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 140KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601
  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.10.0-RC1](https://github.com/go-gitea/gitea/releases/tag/v1.10.0-rc1) - 2019-10-14
  6. * BREAKING
  7. * Remove legacy handling of drone token (#8191)
  8. * Change repo search to use exact match for topic search. (#7941)
  9. * Add pagination for admin api get orgs and fix only list public orgs bug (#7742)
  10. * Implement the ability to change the ssh port to match what is in the gitea config (#7286)
  11. * FEATURE
  12. * Org/Members: display 2FA members states + optimize sql requests (#7621)
  13. * SetDefaultBranch on pushing to empty repository (#7610)
  14. * Adds side-by-side diff for images (#6784)
  15. * API method to list all commits of a repository (#6408)
  16. * Password Complexity Checks (#6230)
  17. * Add option to initialize repository with labels (#6061)
  18. * Add additional password hash algorithms (#6023)
  19. * BUGFIXES
  20. * Fix errors in create org UI regarding team access permission (#8506)
  21. * Fix bug on FindExternalUsersByProvider (#8504)
  22. * Create .ssh dir as necessary (#8486)
  23. * IsBranchExist: return false if provided name is empty (#8485)
  24. * Making openssh listen on SSH_LISTEN_PORT not SSH_PORT (#8477)
  25. * Add check for empty set when dropping indexes during migration (#8471)
  26. * LFS files are relative to LFS content path, ensure that when deleting they are made relative to this (#8455)
  27. * Ensure Request Body Readers are closed in LFS server (#8454)
  28. * Fix template bug on mirror repository setting page (#8438)
  29. * Fix migration v96 to keep issue attachments (#8435)
  30. * Update strk.kbt.io/projects/go/libravatar to latest (#8429)
  31. * Singular form for files that has only one line (#8416)
  32. * Check for either escaped or unescaped wiki filenames (#8408)
  33. * Allow users with explicit read access to give approvals (#8382)
  34. * Fix editor commit to new branch if PR disabled (#8375)
  35. * readd .markdown class to all markup renderers (#8357)
  36. * Upgrade xorm to v0.7.9 to fix some bugs (#8354)
  37. * Fix column name ambiguity in GetUserIssueStats() (#8347)
  38. * Change general form binding to gogs form (#8334)
  39. * Fix pull request commit status in user dashboard list (#8321)
  40. * Fix repo_admin_change_team_access always checked in org settings (#8319)
  41. * Update to github.com/lafriks/xormstore@v1.3.0 (#8317)
  42. * Show correct commit status in PR list (#8316)
  43. * Bugfix for image compare and minor improvements to image compare (#8289)
  44. * Update xorm (#8286)
  45. * Fix API for edit and delete release attachment (#8285)
  46. * Fix nil object access in some conditions when parsing cross references (#8281)
  47. * Fix label count (#8267)
  48. * Only show teams access for organization repositories on collaboration setting page (#8265)
  49. * Test more reserved usernames (#8263)
  50. * Rewrite reference processing code in preparation for opening/closing from comment references (#8261)
  51. * Fix assets key on release webhook (#8253)
  52. * Allow registration when button is hidden (#8237)
  53. * Fix release API URL generation (#8234)
  54. * Fix milestone num_issues (#8221)
  55. * MS Teams webhook misses commit messages (#8209)
  56. * Fix data race (#8204)
  57. * Fix team user api (#8172)
  58. * Fix pull merge 500 error caused by git-fetch breaking behaviors (#8161)
  59. * Make show private icon when repo avatar set (#8144)
  60. * Add reviewers as participants (#8121)
  61. * Fix Go 1.13 private repository go get issue (#8112)
  62. * feat: highlight issue references with : (#8101)
  63. * Make AllowedUsers configurable in sshd_config (#8094)
  64. * Strict name matching for Repository.GetTagID() (#8074)
  65. * Avoid ambiguity of branch/directory names for the git-diff-tree command (#8066)
  66. * Add change title notification for issues (#8061)
  67. * [ssh] fix the config specification in the authorized_keys template (#8031)
  68. * Fix reading git notes from nested trees (#8026)
  69. * Fixes synchronize tags to releases for repository - makes sure we are only getting tag refs (#7990)
  70. * Fix adding default Telegram webhook (#7972)
  71. * Run CORS handler first for /api routes (#7967)
  72. * Abort synchronization from LDAP source if there is some error. (#7960)
  73. * Fix wrong sender when send slack webhook (#7918)
  74. * Fix bug when migrating a private repository (#7917)
  75. * Evaluate emojis in commit messages in list view (#7906)
  76. * Fix upload file type check (#7890)
  77. * lfs/lock: round locked_at timestamp to second (#7872)
  78. * fix non existent milestone with 500 error instead of 404 (#7867)
  79. * gpg/bugfix: Use .ExpiredUnix.IsZero to display green color of forever valid gpg key (#7846)
  80. * Fix duplicate call of webhook (#7821)
  81. * Enable switching to a different source branch when PR already exists (#7819)
  82. * Convert files to utf-8 for indexing (#7814)
  83. * Do not fetch all refs in pull-request compare (#7797)
  84. * Fix multiple bugs with statuses endpoints at API (#7785)
  85. * Restore functionality for early gits (#7775)
  86. * Fix Slack webhook fork message (#7774)
  87. * Rewrite existing repo units if setting is not included in api body (#7763)
  88. * Fix rename failed when rewrite public keys (#7761)
  89. * Fix approvals counting (#7757)
  90. * Add migration step to remove old repo_indexer_status orphaned records (#7746)
  91. * Fix repo_index_status lingering when deleting a repository (#7734)
  92. * Remove camel case tokenization from repo indexer (#7733)
  93. * Fix milestone completness calculation when migrating (#7725)
  94. * Regression: Include "executable" files in the index, as they are not necessarily … (#7718)
  95. * Fixes indexed repos keeping outdated indexes when files grow too large (#7712)
  96. * Skip non-regular files (e.g. submodules) on repo indexing (#7711)
  97. * Fix dropTableColumns sqlite implementation (#7710)
  98. * Update gopkg.in/src-d/go-git.v4 to v4.13.1 (#7705)
  99. * improve branches list performance and fix protected branch icon when no-login (#7695)
  100. * Correct wrong datetime format for git (#7689)
  101. * Move add to hook queue for created repo to outside xorm session. (#7675)
  102. * sugestion to use range .Branches (#7674)
  103. * Fix bug on migrating milestone from github (#7665)
  104. * hide delete/restore button on archived repos (#7658)
  105. * css: use flex to fix floating paginate (#7656)
  106. * Fix syntax highlight initialization (#7617)
  107. * Fix panic on push at - Merging pull request causes 500 error (#7615)
  108. * Make PKCS8, PEM and SSH2 keys work (#7600)
  109. * Fix mistake in arc-green.less split-diff css code. (#7587)
  110. * Handle ErrUserProhibitLogin in http git (#7586)
  111. * Fix bug create/edit wiki pages when code master branch protected (#7580)
  112. * Fixes Malformed URLs in API git/commits response (#7565)
  113. * Fix file header overflow in file and blame views (#7562)
  114. * Improve SSH key parser to handle newlines in keys (#7522)
  115. * Fix empty commits now showing in repo overview (#7521)
  116. * Fix repository's pull request count error (#7518)
  117. * Fix markdown invoke sequence (#7513)
  118. * Remove duplicated webhook trigger (#7511)
  119. * Update User.NumRepos atomically in createRepository (#7493)
  120. * Fix settings page of repo you aren't admin print error - Settings pages giving UnitType error message (#7482)
  121. * Fix redirection after file edit - Handles all redirects for Web UI File CRUD (#7478)
  122. * cmd/serv: actually exit after fatal errors (#7458)
  123. * Fix an issue with some pages throwing 'not defined' js exceptions (#7450)
  124. * fix Dropzone.js integration (#7445)
  125. * Fix regex for issues in commit messages (#7444)
  126. * Diff: Fix indentation on unhighlighted code (#7435)
  127. * Only show "New Pull Request" button if repo allows pulls (#7426)
  128. * Upgrade macaron/captcha to fix random error problem (#7407)
  129. * create class for inline positioned lists (#7393)
  130. * Fetch refs for successful testing for tag (#7388)
  131. * add missing template variable on organisation settings (#7385)
  132. * fix post parameter - on issue list - unset assignee (#7380)
  133. * fix/define autochecked checkboxes on issue list in firefox (#7320)
  134. * only return head: null if source branch was deleted (#6705)
  135. * ENHANCEMENT
  136. * Add nofollow to sign in links (#8509)
  137. * vendor: update mvdan.cc/xurls/v2 to v2.1.0 (#8495)
  138. * Update milestone issues numbers when save milestone and other code improvements (#8411)
  139. * Add extra user information when migrating release (#8331)
  140. * Require overall success if no context is given for status check (#8318)
  141. * Transaction-aware retry create issue to cope with duplicate keys (#8307)
  142. * Change link on issue milestone (#8246)
  143. * Alwaywas return local url for users avatar (#8245)
  144. * Move some milestone functions to a standalone package (#8213)
  145. * Move create issue comment to comments package (#8212)
  146. * Disable max height property of comment textarea (#8203)
  147. * Add 'Mentioning you' group to /issues page (#8201)
  148. * oauth2 with remote Gitea (#8149)
  149. * Reference issues from pull requests and other issues (#8137)
  150. * Fix webhooks to use proxy from environment (#8116)
  151. * Add merged commit id on pull view when it's merged (#8062)
  152. * Add teams to repo on collaboration page. (#8045)
  153. * Update swagger to 0.20.1 (#8010)
  154. * Make link last commit massages in repository home page and commit tables (#8006)
  155. * Add API endpoint for accessing repo topics (#7963)
  156. * Include description in repository search (#7942)
  157. * Use gitea forked macaron (#7933)
  158. * Fix pull creation with empty changes (#7920)
  159. * Allow token as authorization for accessing attachments (#7909)
  160. * Retry create issue to cope with duplicate keys (#7898)
  161. * Move git diff codes from models to services/gitdiff (#7889)
  162. * migrate gplus to google oauth2 provider (#7885)
  163. * Remove unique filter from repo indexer analyzer. (#7878)
  164. * Detect delimiter in CSV rendering (#7869)
  165. * Import topics during migration (#7851)
  166. * Move CreateReview to modules/pull (#7841)
  167. * vendor: update pdf.js to v2.1.266 (#7834)
  168. * Support SSH_LISTEN_PORT env var in docker app.ini template (#7829)
  169. * Add Ability for User to Customize Email Notification Frequency (#7813)
  170. * Move database settings from models to setting (#7806)
  171. * Display ui time with customize time location (#7792)
  172. * Implement webhook branch filter (#7791)
  173. * Restrict repository indexing by glob match (#7767)
  174. * Api: advanced settings for repository (external wiki, issue tracker etc.) (#7756)
  175. * Update migrated repositories' issues/comments/prs poster id if user has a github external user saved (#7751)
  176. * deps: Upgrade gopkg.in/editorconfig/editorconfig-core-go.v1 (#7749)
  177. * Apply emoji on commit graph page (#7743)
  178. * Add a lot of extension to language mappings for syntax highlights (#7741)
  179. * Add SQL execution on log and indexes on table repository and comment (#7740)
  180. * Set DB connection error level to error (#7724)
  181. * Check commit message hashes before making links (#7713)
  182. * remove unnecessary fmt on generate bindata (#7706)
  183. * Fix specific highlighting (CMakeLists.txt ...) (#7686)
  184. * Add file status on API (#7671)
  185. * Add support for DEFAULT_ORG_MEMBER_VISIBLE (#7669)
  186. * Provide links in commit summaries in commits table/view list (#7659)
  187. * Change length of some repository's columns (#7652)
  188. * Move commit repo action from models to repofiles package (#7645)
  189. * fix wrong email when use gitea as OAuth2 provider (#7640)
  190. * [Branch View] add download button (#7604)
  191. * Update to xorm@v0.7.4 (#7596)
  192. * use 403 instead of 401 for ErrUserProhibitLogin (#7591)
  193. * Removed unnecessary conversions (#7557)
  194. * Un-lambda base.FileSize (#7556)
  195. * Added missing error checks in tests (#7554)
  196. * Move create release from models to a standalone package (#7539)
  197. * Make default branch name link to default branch (#7519)
  198. * Added total count of contributions to heatmap (#7517)
  199. * Move mirror to a standalone package from models (#7486)
  200. * Move models.PushUpdate to repofiles.PushUpdate (#7485)
  201. * Include thread related headers in issue/coment mail (#7484)
  202. * Refuse merge until all required status checks success (#7481)
  203. * convert all js var to let/const (#7464)
  204. * Only create branches for opened pull requestes when migrating from github (#7463)
  205. * jQuery 3 (#7425)
  206. * Add notification placeholder (#7409)
  207. * Search Commits via Commit Hash (#7400)
  208. * Move status table to cron package (#7370)
  209. * wiki - page revisions list (#7369)
  210. * Display original author and URL information when showing migrated issues/comments (#7352)
  211. * Refactor filetype is not allowed errors (#7309)
  212. * switch to use gliderlabs/ssh for builtin server (#7250)
  213. * Remove settting dependency on modules/session (#7237)
  214. * Move all mail related codes from models to services/mailer (#7200)
  215. * Support git.PATH entry in app.ini (#6772)
  216. * Support setting cookie domain (#6288)
  217. * Move migrating repository from frontend to backend (#6200)
  218. * Delete releases attachments if release is deleted (#6068)
  219. * SECURITY
  220. * Ignore mentions for users with no access (#8395)
  221. * Be more strict with git arguments (#7715)
  222. * reserve .well-known username (#7637)
  223. * TRANSLATION
  224. * Latvian translation for home page (#8468)
  225. * Add home template italian translation (#8352)
  226. * fix misprint (#7452)
  227. * BUILD
  228. * use go 1.13 (#8088)
  229. * MISC
  230. * add file line count info on UI (#8396)
  231. * Make issues page left menu 100% width and add reponame as title attribute (#8359)
  232. * [arc-green] white on hover for active menu items (#8344)
  233. * Move ref (branch or tag) location on issue list page (#8157)
  234. * apply emoji on dashboard issue list labels (#8156)
  235. * 1148: Take up the full width when viewing the diff in split view. (#8114)
  236. * Display description of 'make this repo private' as help text, not as tooltip (#8097)
  237. * Fixes deformed emoji in pull request reviews (#8047)
  238. * Add strike to old header on comment (#8046)
  239. * Add tooltip for the visibility checkbox in /repo/create (#8025)
  240. * Update github.com/lafriks/xormstore and tidy up mod.go (#8020)
  241. * keep blame view buttons sequence consistent with normal view when view a file (#8007)
  242. * Use "Pull Request" instead of "Merge Request" (#8003)
  243. * Move line number to :before attr to hide from search on browser (#8002)
  244. * Changed black color to white for (read) number label on issue list page (#8000)
  245. * [Branch View] show "New Pull Request" Button only if posible (#7977)
  246. * Fix hook problem by only setting the git environment variables if we are passed them (#7854)
  247. * Prevent Commit Status and Message From Overflowing On Branch Page (#7800)
  248. * Fix global search result CSS, misc CSS tweaks (#7789)
  249. * Tweak label border CSS (#7739)
  250. * Fix create menu item widths (#7708)
  251. * Extract the username and password from the mirror url (#7651)
  252. * [Branch View] Delete duplicate protection symbol (#7624)
  253. * [Branch View] Delete Table Header (#7622)
  254. * [Branch View] icons to buttons (#7602)
  255. * update js dependencies (#7462)
  256. * Add Extra Info to Branches Page (#7461)
  257. * Bump lodash from 4.17.11 to 4.17.14 (#7459)
  258. * wiki history improvements (#7391)
  259. * ui fixes - compare view and archieved repo issues (#7345)
  260. * dark theme scrollbars (#7269)
  261. * wiki - editor - add buttons 'inline code', 'empty checkbox', 'checked checkbox' (#7243)
  262. * Fix Statuses API only shows first 10 statuses: Add paging and extend API GetCommitStatuses (#7141)
  263. ## [1.9.4](https://github.com/go-gitea/gitea/releases/tag/v1.9.4) - 2019-10-08
  264. * BUGFIXES
  265. * Highlight issue references (#8101) (#8404)
  266. * Fix bug when migrating a private repository #7917 (#8403)
  267. * Change general form binding to gogs form (#8334) (#8402)
  268. * Fix editor commit to new branch if PR disabled (#8375) (#8401)
  269. * Fix milestone num_issues (#8221) (#8400)
  270. * Allow users with explicit read access to give approvals (#8398)
  271. * Fix commit status in PR #8316 and PR #8321 (#8339)
  272. * Fix API for edit and delete release attachment (#8290)
  273. * Fix assets on release webhook (#8283)
  274. * Fix release API URL generation (#8239)
  275. * Allow registration when button is hidden (#8238)
  276. * MS Teams webhook misses commit messages (backport v1.9) (#8225)
  277. * Fix data race (#8206)
  278. * Fix pull merge 500 error caused by git-fetch breaking behaviors (#8194)
  279. * Fix the SSH config specification in the authorized_keys template (#8193)
  280. * Fix reading git notes from nested trees (#8189)
  281. * Fix team user api (#8172) (#8188)
  282. * Add reviewers as participants (#8124)
  283. * BUILD
  284. * Use vendored go-swagger (#8087) (#8165)
  285. * Fix version-validation for GO 1.13 (go-macaron/cors) (#8389)
  286. * MISC
  287. * Make show private icon when repo avatar set (#8144) (#8175)
  288. ## [1.9.3](https://github.com/go-gitea/gitea/releases/tag/v1.9.3) - 2019-09-06
  289. * BUGFIXES
  290. * Fix go get from a private repository with Go 1.13 (#8100)
  291. * Strict name matching for Repository.GetTagID() (#8082)
  292. * Avoid ambiguity of branch/directory names for the git-diff-tree command (#8070)
  293. * Add change title notification for issues (#8064)
  294. * Run CORS handler first for /api routes (#7967) (#8053)
  295. * Evaluate emojis in commit messages in list view (#8044)
  296. * Fix failed to synchronize tags to releases for repository (#7990) (#7994)
  297. * Fix adding default Telegram webhook (#7972) (#7992)
  298. * Abort synchronization from LDAP source if there is some error (#7965)
  299. * Fix deformed emoji in commit message (#8071)
  300. * ENHANCEMENT
  301. * Keep blame view buttons sequence consistent with normal view when viewing a file (#8007) (#8009)
  302. ## [1.9.2](https://github.com/go-gitea/gitea/releases/tag/v1.9.2) - 2019-08-22
  303. * BUGFIXES
  304. * Fix wrong sender when send slack webhook (#7918) (#7924)
  305. * Upload support text/plain; charset=utf8 (#7899)
  306. * Lfs/lock: round locked_at timestamp to second (#7872) (#7875)
  307. * Fix non existent milestone with 500 error (#7867) (#7873)
  308. * SECURITY
  309. * Fix No PGP signature on 1.9.1 tag (#7874)
  310. * 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
  311. * ENHANCEMENT
  312. * Fix pull creation with empty changes (#7920) (#7926)
  313. * BUILD
  314. * Drone/docker: prepare multi-arch release + provide arm64 image (#7571) (#7884)
  315. ## [1.9.1](https://github.com/go-gitea/gitea/releases/tag/v1.9.1) - 2019-08-14
  316. * BREAKING
  317. * Add pagination for admin api get orgs and fix only list public orgs bug (#7742) (#7752)
  318. * SECURITY
  319. * Be more strict with git arguments (#7715) (#7762)
  320. * 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
  321. * BUGFIXES
  322. * Fix local runs of ssh-requiring integration tests (#7855) (#7857)
  323. * Fix hook problem (#7856) (#7754)
  324. * Use .ExpiredUnix.IsZero to display green color of forever valid gpg key (#7850) (#7846)
  325. * Do not fetch all refs (#7797) (#7837)
  326. * Fix duplicate call of webhook (#7824) (#7821)
  327. * Enable switching to a different source branch when PR already exists (#7823)
  328. * Rewrite existing repo units if setting is not included in api body (#7811)
  329. * Prevent Commit Status and Message From Overflowing On Branch Page (#7800) (#7808)
  330. * API: fix multiple bugs with statuses endpoints (Backport #7785) (#7807)
  331. * Fix Slack webhook fork message (1.9 release backport) (#7783)
  332. * Fix approvals counting (#7757) (#7777)
  333. * Fix rename failed when rewrite public keys (#7761) (#7769)
  334. * Fix dropTableColumns sqlite implementation (#7710) (#7765)
  335. * Fix repo_index_status lingering when deleting a repository (#7738)
  336. * Fix milestone completness calculation when migrating (#7725) (#7732)
  337. * Fixes indexed repos keeping outdated indexes when files grow too large (#7731)
  338. * Skip non-regular files (e.g. submodules) on repo indexing (#7717)
  339. * Improve branches list performance and fix protected branch icon when no-login (#7695) (#7704)
  340. * Correct wrong datetime format for git (#7689) (#7690)
  341. ## [1.9.0](https://github.com/go-gitea/gitea/releases/tag/v1.9.0) - 2019-07-30
  342. * BREAKING
  343. * Better logging (#6038) (#6095)
  344. * SECURITY
  345. * Shadow the password on cache and session config on admin panel (#7300)
  346. * Fix markdown invoke sequence (#7513) (#7560)
  347. * Reserve .well-known username (#7638)
  348. * Do not leak secrets via timing side channel (#7364)
  349. * Ensure that decryption of cookie actually suceeds (#7363)
  350. * FEATURE
  351. * Content API for Creating, Updating, Deleting Files (#6314)
  352. * Enable tls-alpn-01: Use certmanager provided TLSConfig for LetsEncrypt (#7229)
  353. * Add command to convert mysql database from utf8 to utf8mb4 (#7144)
  354. * Fixes #2738 - Adds the /git/tags API endpoint (#7138)
  355. * Compare branches, commits and tags with each other (#6991)
  356. * Show Pull Request button or status of latest PR in branch list (#6990)
  357. * Repository avatars (#6986)
  358. * Show git-notes (#6984)
  359. * Add commit statuses reports on pull request view (#6845)
  360. * Number of commits ahead/behind in branch overview (#6695)
  361. * Add CLI commands to manage LDAP authentication source (#6681)
  362. * Add support for MS Teams webhooks (#6632)
  363. * OAuth2 Grant UI (#6625)
  364. * Add SUBJECT_PREFIX mailer config option (#6605)
  365. * Include custom configuration file in dump (#6516)
  366. * Add API for manipulating Git hooks (#6436)
  367. * Improve migrations to support migrating milestones/labels/issues/comments/pullrequests (#6290)
  368. * Add option to blame files (#5721)
  369. * Implement Default Webhooks (#4299)
  370. * Telegram webhook (#4227)
  371. * BUGFIXES
  372. * Send webhook after commit when creating issue with assignees (#7681) (#7684)
  373. * Upgrade macaron/captcha to fix random error problem (#7407) (#7683)
  374. * Move add to hook queue for created repo to outside xorm session. (#7682) (#7675)
  375. * Show protection symbol if needed on default branch (#7660) (#7668)
  376. * Hide delete/restore button on archived repos (#7660)
  377. * Fix bug on migrating milestone from github (#7665) (#7666)
  378. * Use flex to fix floating paginate (#7656) (#7662)
  379. * Change length of some repository's columns (#7652) (#7655)
  380. * Fix wrong email when use gitea as OAuth2 provider (#7640) (#7647)
  381. * Fix syntax highlight initialization (#7617) (#7626)
  382. * Fix bug create/edit wiki pages when code master branch protected (#7580) (#7623)
  383. * Fix panic on push at #7611 (#7615) (#7618)
  384. * Handle ErrUserProhibitLogin in http git (#7586, #7591) (#7590)
  385. * Fix color of split-diff view in dark theme (#7587) (#7589)
  386. * Fix file header overflow in file and blame views (#7562) (#7579)
  387. * Malformed URLs in API git/commits response (#7565) (#7567)
  388. * Fix empty commits now showing in repo overview (#7521) (#7563)
  389. * Fix repository's pull request count error (#7518) (#7524)
  390. * Remove duplicated webhook trigger (#7511) (#7516)
  391. * Handles all redirects for Web UI File CRUD (#7478) (#7507)
  392. * Fix regex for issues in commit messages (#7444) (#7466)
  393. * cmd/serv: actually exit after fatal errors (#7458) (#7460)
  394. * Fix an issue with some pages throwing 'not defined' js exceptions #7450 (#7453)
  395. * Fix Dropzone.js integration (#7445) (#7448)
  396. * Create class for inline positioned lists (#7439) (#7393)
  397. * Diff: Fix indentation on unhighlighted code (#7435) (#7443)
  398. * jQuery 3 (#7442) (#7425)
  399. * Only show "New Pull Request" button if repo allows pulls (#7426) (#7432)
  400. * Fix vendor references (#7394) (#7396)
  401. * Only return head: null if source branch was deleted (#6705) (#7376)
  402. * Add missing template variable on organisation settings (#7386) (#7385)
  403. * Fix post parameter on issue list which had unset assignee (#7380) (#7383)
  404. * Fix migration tests due to issue 7 being resolved (#7375) (#7381)
  405. * Correctly adjust mirror url (#6593)
  406. * Handle early git version's lack of get-url (#7065)
  407. * Fix icon position in issue view (#7354)
  408. * Cut timeline length with last element on issue view (#7355)
  409. * Fix mirror repository webhooks (#7366)
  410. * Fix api route for hooks (#7346)
  411. * Fix bug conflict between SyncReleasesWithTags and InsertReleases (#7337)
  412. * Fix pull view ui merge section (#7335)
  413. * Fix 7303 - remove unnessesary buttons on archived repos (#7326)
  414. * Fix topic bar to allow prefixes (#7325)
  415. * Fixes #7152 - Allow create/update/delete message to be empty, use default message (#7324)
  416. * Fixes #7238 - Annotated tag commit ID incorrect (#7321)
  417. * Dark theme fixes (#7319)
  418. * Gitea own dark codemirror theme (#7317)
  419. * Fixes #7292 - API File Contents bug (#7301)
  420. * Fix API link header (#7298)
  421. * Fix extra newlines when copying from diff in Firefox (#7288)
  422. * Make diff line-marker non-selectable (#7279)
  423. * Fix Submodule dection in subdir (#7275)
  424. * Fix error log when loading issues caused by a xorm bug (#7271)
  425. * Add .fa icon margin like .octicon (#7258)
  426. * Fix hljs unintenionally highlighting commit links (#7244)
  427. * Only check and config git on web subcommand but not others (#7236)
  428. * Fix migration panic when Head.User is not exist (#7226)
  429. * Only warn on errors in deleting LFS orphaned files during repo deletion (#7213)
  430. * Fix duplicated file on pull request conflicted files (#7211)
  431. * Allow colon between fixing word and issue (#7207)
  432. * Fix overflow issues in repo (#7190)
  433. * API error cleanup (#7186)
  434. * Add error for fork already existing (#7185)
  435. * Fixes diff on merged pull requests (#7171)
  436. * If milestone id is zero don't get it from database (#7169)
  437. * Fix pusher name via ssh push (#7167)
  438. * Fix database lock when use random repository fallback image (#7166)
  439. * Various fixes for issue mail notifications (#7165)
  440. * Allow archived repos to be (un)starred and (un)watched (#7163)
  441. * Fix GCArgs load from ini (#7156)
  442. * Detect noreply email address as user (#7133)
  443. * Avoid arbitrary format strings upon calling fail() function (#7112)
  444. * Validate External Tracker URL Format (#7089)
  445. * Repository avatar fallback configuration (#7087)
  446. * Fix #732: Add LFS objects to base repository on merging (#7082)
  447. * Install page - Handle invalid administrator username better (#7060)
  448. * Workaround for posting single comments in split diff view (#7052)
  449. * Fix possbile mysql invalid connnection error (#7051)
  450. * Fix charset was not saved after installation finished (#7048)
  451. * Handle insecure and ports in go get (#7041)
  452. * Avoid bad database state after failed migration (#7040)
  453. * Fix wrong init dependency on markup extensions (#7038)
  454. * Fix default for allowing new organization creation for new users (#7017)
  455. * Fix content download and /verify LFS handler expecting wrong content-type (#7015)
  456. * Fix missing repo description when migrating (#7000)
  457. * Fix LFS Locks over SSH (#6999)
  458. * Do not attempt to return blob on submodule (#6996)
  459. * Fix U2F for Chrome >= 74 (#6980)
  460. * Fix index produces problem when issues/pulls deleted (#6973)
  461. * Allow collaborators to view repo owned by private org (#6965)
  462. * Stop running hooks on pr merge (#6963)
  463. * Run hooks on merge/edit and cope with protected branches (#6961)
  464. * Webhook Logs show proper HTTP Method, and allow change HTTP method in form (#6953)
  465. * Stop colorizing log files by default (#6949)
  466. * Rotate serv.log, http.log and hook logs and stop stacktracing in these (#6935)
  467. * Fix plain text overflow line wrap (#6915)
  468. * Fix input size for dependency select (#6913)
  469. * Change drone token name to let users know to use oauth2 (#6912)
  470. * Fix syntax highlight in blame view #6895 (#6909)
  471. * Use AppURL for Oauth user link (#6894)
  472. * Fixes #6881 - API users search fix (#6882)
  473. * Fix 404 when send pull request some situation (#6871)
  474. * Enforce osusergo build tag for releases (#6862)
  475. * Fix 500 when reviewer is deleted with integration tests (#6856)
  476. * Fix v85.go (#6851)
  477. * Make dropTableColumns drop columns on sqlite and constraints on all (#6849)
  478. * Fix double-generation of scratch token (#6832) (#6833)
  479. * When mirroring we should set the remote to mirror (#6824)
  480. * Fix the v78 migration "Drop is_bare" on MSSQL #6707 (#6823)
  481. * Change verbose flag in dump command to avoid colliding with global version flag (#6822)
  482. * Fix #6813: Allow git.GetTree to take both commit and tree names (#6816)
  483. * Remove `seen` map from `getLastCommitForPaths` (#6807)
  484. * Show scrollbar only when needed (#6802)
  485. * Restore IsWindows variable assignment (#6722) (#6790)
  486. * Service worker js is a missing comma (#6788)
  487. * Fix team edit API panic (#6780)
  488. * Set user search base field optional in LDAP (simple auth) edit page (#6779)
  489. * Ignore already existing public keys after ldap sync (#6766)
  490. * Fix pulls broken when fork repository deleted (#6754)
  491. * Fix missing return (#6751)
  492. * Fix new team 500 (#6749)
  493. * OAuth2 token can be used in basic auth (#6747)
  494. * Fix org visibility bug when git cloning (#6743)
  495. * Fix bug when sort repos on org home page login with non-admin (#6741)
  496. * Stricter domain name pattern in email regex (#6739)
  497. * Fix admin template error (#6737)
  498. * Drop is_bare IDX only when it exists for MySQL and MariaDB (#6736)
  499. * UI: Detect and restore encoding and BOM in content (#6727)
  500. * Load issue attributes when editing an issue with API (#6723)
  501. * Fix team members API (#6714)
  502. * Unfortunately MemProvider Init does not actually Init properly (#6692)
  503. * Fix partial reversion of #6657 caused by #6314 (#6685)
  504. * Prevent creating empty sessions (#6677)
  505. * Fixes #6659 - Swagger schemes selection default to page's protocol (#6660)
  506. * Update highlight.js to 9.15.6 (#6658)
  507. * Properly escape on the redirect from the web editor (#6657)
  508. * Fix #6655 - Don't EscapePound .Link as it is already escaped (#6656)
  509. * Use ctx.metas for SHA hash links (#6645)
  510. * Fix wrong GPG expire date (#6643)
  511. * upgrade version of lib/pq to v1.1.0 (#6640)
  512. * Fix forking an empty repository (#6637)
  513. * Fix issuer of OTP URI should be URI-encoded. (#6634)
  514. * Return a UserList from /api/v1/admin/users (#6629)
  515. * Add json tags for oauth2 form (#6627)
  516. * Remove extra slash from twitter card (#6619)
  517. * remove bash requirement in makefile (#6617)
  518. * Fix Open Graph og:image link (#6612)
  519. * Fix cross-compile builds (#6609)
  520. * Change commit summary to full message in API (#6591)
  521. * Fix bug user search API pagesize didn't obey ExplorePagingNum (#6579)
  522. * Prevent server 500 on compare branches with no common history (#6555)
  523. * Properly escape release attachment URL (#6512)
  524. * Delete local branch when repo branch is deleted (#6497)
  525. * Fix bug when user login and want to resend register confirmation email (#6482)
  526. * Fix upload attachments (#6481)
  527. * Avoid multi-clicks in oauth2 login (#6467)
  528. * Hacky fix for alignment of the create-organization dialog (#6455)
  529. * Change order that PostProcess Processors are run (#6445)
  530. * Clean up ref name rules (#6437)
  531. * Fix Hook & HookList in Swagger (#6432)
  532. * Fixed unitTypeCode not being used in accessLevelUnit (#6419)
  533. * Display correct error for invalid mirror interval (#6414)
  534. * Don't Unescape redirect_to cookie value (#6399)
  535. * Fix dump table name error and add some test for dump database (#6394)
  536. * Fix migrations 82 to ignore unsynced tags between database and git data and missing is_archived on repository table (#6387)
  537. * Make sure units of a team are returned (#6379)
  538. * Fix bug manifest.json will not request with cookie so that session will created every request (#6372)
  539. * Disable benchmarking during tag events on DroneIO (#6365)
  540. * Comments list performance optimization (#5305)
  541. * ENHANCEMENT
  542. * Update Drone docker generation to standard format (#7480) (#7496) (#7504)
  543. * Add API Endpoint for Repo Edit (#7006)
  544. * Add state param to milestone listing API (#7131)
  545. * Make captcha and password optional for external accounts (#6606)
  546. * Detect migrating batch size (#7353)
  547. * Fix 7255 - wrap long texts on user profile info (#7333)
  548. * Use commit graph files for listing pages (#7314)
  549. * Add git command line commitgraph support global default true when git version >= 2.18 (#7313)
  550. * Add LFS_START_SERVER option to control git-lfs support (#7281)
  551. * Dark theme markdown fixes (#7260)
  552. * Update go-git to v4.12.0 (#7249)
  553. * Show lfs config on admin panel (#7220)
  554. * Disable same user check for internal SSH (#7215)
  555. * Add LastLogin to the User API (#7196)
  556. * Add missing description of label on API (#7159)
  557. * Use go method to calculate ssh key fingerprint (#7128)
  558. * Enable Rust highlighting (#7125)
  559. * Refactor submodule URL parsing (#7100)
  560. * Change issue mail title. (#7064)
  561. * Use batch insert on migrating repository to make the process faster (#7050)
  562. * Improve github downloader on migrations (#7049)
  563. * When git version >= 2.18, git command could run with git wire protocol version 2 param if enabled (#7047)
  564. * Fix Erlang and Elixir highlight mappings (#7044)
  565. * API Org Visibility (#7028)
  566. * Improve handling of non-square avatars (#7025)
  567. * Bugfix: Align comment label and actions to the right (#7024)
  568. * Change UpdateRepoIndex api to include watchers (#7012)
  569. * Move serv hook functionality & drop GitLogger (#6993)
  570. * Add support of utf8mb4 for mysql (#6992)
  571. * Make webhook http connections resuable (#6976)
  572. * Move xorm logger bridge from log to models so that log module could be a standalone package (#6944)
  573. * Refactor models.NewRepoContext to extract git related codes to modules/git (#6941)
  574. * Remove macaron dependent on models (#6940)
  575. * Add less linter via npx (#6936)
  576. * Remove macaron dependent on modules/log (#6933)
  577. * Remove macaron dependent on models/mail.go (#6931)
  578. * Clean less files (#6921)
  579. * Fix code overflow (#6914)
  580. * Style orgs list in user profile (#6911)
  581. * Improve description of branch protection (fix #6886) (#6906)
  582. * Move sdk structs to modules/structs (#6905)
  583. * update sdk to latest (#6903)
  584. * Escape the commit message on issues update and title in telegram hook (#6901)
  585. * SearchRepositoryByName improvements and unification (#6897)
  586. * Change the color of issues/pulls list, merged is purple and closed is red (#6874)
  587. * Refactor table width to have more info shown in file list (#6867)
  588. * Monitor all git commands; move blame to git package and replace git as a variable (#6864)
  589. * Fix config ui error about cache ttl (#6861)
  590. * Improve localization of git activity stats (#6848)
  591. * Generate access token in admin cli (#6847)
  592. * Update github.com/urfave/cli to version 1.2.0 (#6838)
  593. * Rename LFS_JWT_SECRET cli option to include OAUTH2 as well (#6826)
  594. * internal/ssh: ignore env command totally (#6825)
  595. * Allow Recaptcha service url to be configured (#6820)
  596. * update github.com/mcuadros/go-version to v0.0.0-20190308113854-92cdf37c5b75 (#6815)
  597. * Use modules/git for git commands (#6775)
  598. * Add GET requests to webhook (#6771)
  599. * Move PushUpdate dependency from models to repofiles (#6763)
  600. * Tweak tab text and icon colors (#6760)
  601. * Ignore non-standard refs in git push (#6758)
  602. * Disable web preview for telegram webhook (#6719)
  603. * Show full name if DEFAULT_SHOW_FULL_NAME setting enabled (#6710)
  604. * Reorder file actions (#6706)
  605. * README WordPress the code is overflowing #6679 (#6696)
  606. * Improve issue reference on commit (#6694)
  607. * Handle redirects for git clone commands (#6688)
  608. * Fix one performance/correctness regression in #6478 found on Rails repository. (#6686)
  609. * API OTP Context (#6674)
  610. * Remove local clones & make hooks run on merge/edit/upload (#6672)
  611. * Bump github.com/stretchr/testify from 1.2.2 to 1.3.0 (#6663)
  612. * Bump gopkg.in/src-d/go-git.v4 from 4.8.0 to 4.10.0 (#6662)
  613. * Fix dropdown icon padding (#6651)
  614. * Add more title attributes on shortened names (#6647)
  615. * Update UI for topics labels on projects (#6639)
  616. * Trace Logging on Permission Denied & ColorFormat (#6618)
  617. * Add .gpg url (match github behaviour) (#6610)
  618. * Support for custom GITEA_CUSTOM env var in docker(#6608)
  619. * Show "delete branch" button on closed pull requests (#6570) (#6601)
  620. * Add option to disable refresh token invalidation (#6584)
  621. * Fix new repo dropdown alignment (#6583)
  622. * Fix mail notification when close/reopen issue (#6581)
  623. * Pre-calculate the absolute path of git (#6575)
  624. * Minor CSS cleanup for the navbar (#6553)
  625. * Render SHA1 links as code blocks (#6546)
  626. * Add username flag in create-user command (#6534)
  627. * Unifies pagination template usage (#6531) (#6533)
  628. * Fixes pagination width on mobile view (#5711) (#6532)
  629. * Improve SHA1 link detection (#6526)
  630. * Fixes #6446 - Sort team members and team's repositories (#6525)
  631. * Use stricter boundaries for auto-link detection (#6522)
  632. * Use regular line-height on frontpage entries (#6518)
  633. * Fixes #6514 - New Pull Request on files and pulls pages the same (#6515)
  634. * Make distinction between DisplayName and Username in email templates (#6495)
  635. * Add X-Auto-Response-Suppress header to outgoing messages (#6492)
  636. * Cleaned permission checks for API -> site admin can now do anything (#6483)
  637. * Support search operators for commits search (#6479)
  638. * Improve listing performance by using go-git (#6478)
  639. * Fix repo sub_menu font color in arc-green (#6477)
  640. * Show last commit status in pull request lists (#6465)
  641. * Add signatures to webhooks (#6428)
  642. * Optimize all images in public/img (#6427)
  643. * Add golangci (#6418)
  644. * Make "Ghost" not link to 404 page (#6410)
  645. * Include more variables on admin/config page (#6378)
  646. * Markdown: enable some more extensions (#6362)
  647. * Include repo name in page title tag (#6343)
  648. * Show locale string on timestamp (#6324)
  649. * Handle CORS requests (#6289)
  650. * Improve issue autolinks (#6273)
  651. * Migration Tweaks (#6260)
  652. * Add title attributes to all items in the repo list viewer (#6258)
  653. * Issue indexer queue redis support (#6218)
  654. * Add bio field for user (#6113)
  655. * Make the version within makefile overwriteable (#6080)
  656. * Updates to API 404 responses (#6077)
  657. * Use Go1.11 module (#5743)
  658. * UX + Security current user password reset (#5042)
  659. * Refactor: append, build variable and type switch (#4940)
  660. * Git statistics in Activity tab (#4724)
  661. * Drop the bits argument when generating an ed25519 key (#6504)
  662. * TESTING
  663. * Exclude pull_request from fetch-tags step, fixes #7108 (#7120)
  664. * Refactor and improve git test (#7086)
  665. * Fix TestSearchRepo by waiting till indexing is done (#7004)
  666. * Add mssql migration tests (needs #6823) (#6852)
  667. * Add tests for Org API (#6731)
  668. * Context.ServerError and NotFound should log from their caller (#6550)
  669. * TRANSLATION
  670. * Add french specific rule for translating plural texts (#6846)
  671. * BUILD
  672. * Update mssql driver to last working version 20180314172330-6a30f4e59a44 (#7306)
  673. * Alpine 3.10 (#7256)
  674. * Use vfsgen instead of go-bindata (#7080)
  675. * remove and disable package-lock (#6969)
  676. * add make targets for js and css, add js linter (#6952)
  677. * Added tags pull step to drone config to show correct version hashes i… (#6836)
  678. * Make CustomPath, CustomConf and AppWorkPath configurable at build (#6631)
  679. * chore: update drone format to 1.0 (#6602)
  680. * Fix race in integration testlogger (#6556)
  681. * Quieter Integration Tests (#6513)
  682. * Drop the docker Makefile from the image (#6507)
  683. * Add make version on gitea version (#6485)
  684. * Fix #6468 - Uses space match and adds newline for all sed flavors (#6473)
  685. * Move code.gitea.io/git to code.gitea.io/gitea/modules/git (#6364)
  686. * Update npm dependencies and various tweaks (#7344)
  687. * Fix updated drone file (#7336)
  688. * Add 'npm' and 'npm-update' make targets and lockfile (#7246)
  689. * DOCS
  690. * Add work path CLI option (#6922)
  691. * Fix logging documentation (#6904)
  692. * Some logging documentation (#6498)
  693. * Fix link to Hacking on Gitea on From-Source doc page (#6471)
  694. * Fix typos in docs command-line examples (#6466)
  695. * Added docker example for backup (#5846)
  696. ## [1.8.3](https://github.com/go-gitea/gitea/releases/tag/v1.8.3) - 2019-06-17
  697. * BUGFIXES
  698. * Always set userID on LFS authentication (#7224) (Part of #6993)
  699. * Fix LFS Locks over SSH (#6999) (#7223)
  700. * Fix duplicated file on pull request conflicted files (#7211) (#7214)
  701. * Detect noreply email address as user (#7133) (#7195)
  702. * Don't get milestone from DB if ID is zero (#7169) (#7174)
  703. * Allow archived repos to be (un)starred and (un)watched (#7163) (#7168)
  704. * Fix GCArgs load from ini (#7156) (#7157)
  705. ## [1.8.2](https://github.com/go-gitea/gitea/releases/tag/v1.8.2) - 2019-05-29
  706. * BUGFIXES
  707. * Fix possbile mysql invalid connnection error (#7051) (#7071)
  708. * Handle invalid administrator username on install page (#7060) (#7063)
  709. * Disable arm7 builds (#7037) (#7042)
  710. * Fix default for allowing new organization creation for new users (#7017) (#7034)
  711. * SearchRepositoryByName improvements and unification (#6897) (#7002)
  712. * Fix u2f registrationlist ToRegistrations() method (#6980) (#6982)
  713. * Allow collaborators to view repo owned by private org (#6965) (#6968)
  714. * Use AppURL for Oauth user link (#6894) (#6925)
  715. * Escape the commit message on issues update (#6901) (#6902)
  716. * Fix regression for API users search (#6882) (#6885)
  717. * Handle early git version's lack of get-url (#7065) (#7076)
  718. * Fix wrong init dependency on markup extensions (#7038) (#7074)
  719. ## [1.8.1](https://github.com/go-gitea/gitea/releases/tag/v1.8.1) - 2019-05-08
  720. * BUGFIXES
  721. * Fix 404 when sending pull requests in some situations (#6871) (#6873)
  722. * Enforce osusergo build tag for releases (#6862) (#6869)
  723. * Don't post process commit summary in templates (#6842) (#6868)
  724. * Fix 500 when reviewer is deleted (#6856) (#6860)
  725. * Fix v78 migration for MSSQL (#6823) (#6854)
  726. * Added tags pull step to drone config to show correct version hashes (#6836) (#6839)
  727. * Fix double-generation of scratch token (#6833) (#6835)
  728. * When mirroring we should set the remote to mirror (#6824) (#6834)
  729. * Show scrollbar only when needed (#6802) (#6803)
  730. * Service worker js is missing a comma (#6788) (#6795)
  731. * Set user search base field optional in LDAP (simple auth) edit page (#6779) (#6789)
  732. * Fix team edit API panic (#6780) (#6785)
  733. * Minor CSS cleanup for the navbar (#6553) (#6781)
  734. * Stricter domain name pattern in email regex (#6739) (#6768)
  735. * Detect and restore encoding and BOM in content (#6727) (#6765)
  736. * Fix org visibility bug when git cloning (#6743) (#6762)
  737. * OAuth2 token can be used in basic auth (#6747) (#6761)
  738. * Fix missing return (#6751) (#6756)
  739. * Fix sorting repos on org home page with non-admin login (#6741) (#6746)
  740. * Drop is_bare IDX only when it exists for MySQL and MariaDB (#6736) (#6744)
  741. * Fix team members API (#6714) (#6729)
  742. * Load issue attributes when editing an issue with API (#6723) (#6725)
  743. * Fix config ui error about cache ttl (#6861) (#6865)
  744. ## [1.8.0](https://github.com/go-gitea/gitea/releases/tag/v1.8.0) - 2019-04-20
  745. * SECURITY
  746. * Prevent remote code execution vulnerability with mirror repo URL settings (#6593) (#6594)
  747. * Resolve 2FA bypass on API (#6676) (#6674)
  748. * Prevent the creation of empty sessions for non-logged in users (#6690) (#6677)
  749. * BREAKING
  750. * Add "ghost" and "notifications" to list of reserved user names. (#6208)
  751. * Change sqlite DB path default to data directory (#6198)
  752. * Adds MustChangePassword to user create/edit API (#6193)
  753. * Disable redirect for i18n (#5910)
  754. * Releases API paging (#5831)
  755. * Allow Macaron to be set to log through to gitea.log (#5667)
  756. * Don't close issues via commits on non-default branch (#5622)
  757. * FEATURE
  758. * Add regenerate secret feature for oauth2 (#6291)
  759. * Expose issue stopwatch toggling via API (#5970)
  760. * Add other session providers (#5963)
  761. * Pull request conflict files detection (#5951)
  762. * Integrate OAuth2 Provider (#5378)
  763. * Implement "conversation lock" for issue comments (#5073)
  764. * Feature: Archive repos (#5009)
  765. * Discord Oauth2 support (#4476)
  766. * Allow to set organization visibility (public, internal, private) (#1763)
  767. * Added URL mapping for Release attachments like on github.com (#1707)
  768. * ENHANCEMENT
  769. * Add support for client basic auth for exchanging access tokens (#6293)
  770. * Add ability to sort issues by due date (#6206) (#6244)
  771. * Style tweaks to issue selection (#6196)
  772. * Increase Username and Orgname MaxSize 35 -> 40 (#6178)
  773. * Coverage profile with multiple packages (#6167)
  774. * Split setting.go to multiple files (#6154)
  775. * Allow labels to contain emoji (#6063)
  776. * Disable git fsck for mirrored repos by default (#6018)
  777. * Add default time out for git operations (#6015)
  778. * Split setting.go as multiple files (#6014)
  779. * Make dashboard navbar and footer full-width (#6013)
  780. * Add lang specific font stacks for CJK (#6007)
  781. * Fix header menu misalignment (#6002)
  782. * Enhance closed PR and Issue status in the list (#6000)
  783. * Make navbar full width (#5998)
  784. * Add option to close issues via commit on a non master branch (#5992)
  785. * Support n as a line highlight prefix (#5987)
  786. * Search for org repos (#3031) (#5986)
  787. * Minor UI tweaks (#5980)
  788. * Use native golang SSH library but ssh-keygen when enable built-in SSH server to remove dependent on that command lines (#5976)
  789. * Dashboard tweaks (#5974)
  790. * Fixes for repo topic editor (#5971)
  791. * Display the branch name in the commit view (#5950)
  792. * handle milestone events for issues and PR (#5947)
  793. * Add label names as filter in issue search api (#5946)
  794. * Repo header tweaks (#5945)
  795. * Better support for long repo names (#5932)
  796. * Fix wrapping long code lines (#5927)
  797. * Change GPG Validation colors and remove inline CSS (#5404) (#5896)
  798. * Fix "pulls.blocked_by_approvals" text (#5879)
  799. * Rename reject to 'request changes' (#5858)
  800. * Move input fields to add members to a team and repos to a team (#5853)
  801. * Config option to disable automatic repo watching (#5852)
  802. * New Issue ?body= query (#5851)
  803. * Add API to list tags (#5850)
  804. * Pagination for git tree API (#5838)
  805. * Add InternalTokenURI to load InternalToken from an external file (#5812)
  806. * Allow markdown files to read from the LFS (#5787)
  807. * Add the ability to use multiple labels as filters (#5786)
  808. * Adjust log settings when a user is not found. (#5771)
  809. * Log IP of failed ssh connection (#5766)
  810. * Moved defaults in defaults.go to setting.go (#5764)
  811. * Make DB connect more robust (#5738)
  812. * Add Default Pull Request Title (#5735)
  813. * Refactor repo.isBare to repo.isEmpty #5629 (#5714)
  814. * Add flag to skip repository dumping (#5695)
  815. * Prioritize "readme.md" (#5691)
  816. * Improve "Fork button" for guests by showing a pop up asking them to log in before forking (#5690)
  817. * Allow for user specific themes (#5668)
  818. * Display branch name in delete branch confirmation modal. (#5654)
  819. * New API routes added (#5594)
  820. * Refactor notification for indexer (#5111)
  821. * Refactor mail notification (#5110)
  822. * Show email if the authenticated user owns the profile page being requested for (#4981)
  823. * Optimize pulls merging (#4921)
  824. * Sort Repositories widget by most recently updated (#3963) (#4599)
  825. * Allow markdown table to scroll (#4401)
  826. * Automatically clear stopwatch on merging a PR (#4327)
  827. * Add the Owner Name to differentiate when merging (#3807)
  828. * Add title attributes to all items in the repo list viewer (#6258) (#6650)
  829. * BUGFIXES
  830. * Fix dropdown icon padding (#6651) (#6654)
  831. * Fix wrong GPG expire date (#6643) (#6644)
  832. * Fix forking an empty repository (#6637) (#6653)
  833. * Remove call to EscapePound .Link as it is already escaped (#6656) (#6666)
  834. * Properly escape on the redirect from the web editor (#6657) (#6667)
  835. * Allow resend of confirmation email when logged in (#6482) (#6486)
  836. * Fix mail notification when close/reopen issue (#6581) (#6588)
  837. * Change API commit summary to full message (#6591) (#6592)
  838. * Add option to disable refresh token invalidation (#6584) (#6587)
  839. * Fix bug user search API pagesize didn't obey ExplorePagingNum (#6579) (#6586)
  840. * Fix new repo alignment (#6583) (#6585)
  841. * Prevent server 500 on compare branches with no common history (#6555) (#6558)
  842. * Properly escape release attachment URL (#6512) (#6523)
  843. * Hacky fix for alignment of the create-organization dialog (#6455) (#6462)
  844. * Disable benchmarking during tag events on DroneIO (#6365) (#6366)
  845. * Make sure units of a team are returned (#6379) (#6381)
  846. * Don't Unescape redirect_to cookie value (#6399) (#6401)
  847. * Fix dump table name error and add some test for dump database (#6394) (#6402)
  848. * Fix migration v82 to ignore unsynced tags between database and git data; Add missing is_archived column on repository table (#6387) (#6403)
  849. * Display correct error for invalid mirror interval (#6414) (#6429)
  850. * Clean up ref name rules (#6437) (#6439)
  851. * Fix Hook & HookList in Swagger (#6432) (#6440)
  852. * Change order that PostProcess Processors are run (#6445) (#6447)
  853. * Clean up various use of escape/unescape functions for URL generation (#6334)
  854. * Return 409 when creating repo if it already exists. (#6330)
  855. * Add same changes from issues page to milestone->issues page (#6328)
  856. * Fix ParsePatch function to work with quoted diff --git strings (#6323)
  857. * Fix reported issue in repo description (#6306)
  858. * Use url.PathEscape to escape the branchname (#6304)
  859. * Add robots.txt as reserved username (#6272)
  860. * Replace linkRegex with xurls library (#6261)
  861. * Remove visitLinksForShortLinks features (#6257)
  862. * Add unit types to repo action URL to correctly show 404 when archived (#6247)
  863. * Check organization visibility before everything else (#6234) (#6235)
  864. * Prevent double-close of issues (#6233)
  865. * Override xorm type mapping for U2F counter (#6232)
  866. * Add isAdmin to user API response (#6231)
  867. * Update git vendor to fix wrong release commit id and add migrations (#6224)
  868. * Fix fork button (#6223)
  869. * Fix renames over redirects (#6216)
  870. * Fix display dashboard even if require to change password (#6214)
  871. * Create a repo redirect when transferring ownership (#6210) (#6211)
  872. * Fix issue update race condition (#6194)
  873. * Fix bug when migrate repository 500 when repo is existed (#6188)
  874. * Fix scrollbar always present on page body (#6177)
  875. * Fix bug when set indexer as db and add tests (#6173)
  876. * Modify linkRegex to require http|https (#6171)
  877. * Fix bug user could change private repository to public when force private enabled. (#6156)
  878. * Fix admin list user/org API (#6143)
  879. * Make repo creation for API similar to UI (#6142)
  880. * Make document body a flexbox (#6139)
  881. * Refactor issue indexer, add some testing and fix a bug (#6131)
  882. * Load Issue attributes for API call (#6122)
  883. * Fix bug when update owner team then visit team's repo return 404 (#6119)
  884. * Fix heatmap and repository menu display in Internet Explorer 9+ (#6117)
  885. * Show private organization for admin, fix #6111 (#6112)
  886. * Fix prohibit login check on authorization (#6106)
  887. * Move to ldap.v3 to fix #5928 (#6105)
  888. * Remove use MakeAssigneeList in webhooks to fix deadlock (#6102)
  889. * Allow display of LFS stored Readme.md on directory page (#6073) (#6099)
  890. * Make sure labels are actually returned (#6053)
  891. * Fix panic: template: repo/issue/list:210: unexpected "=" in operand (#6041)
  892. * After deleting a repo on admin panel, UI should remember the last sort type (#6033)
  893. * Default create repository on organisation on its dashboard (#6026)
  894. * Swagger: Remove spaces in MergePullRequestOption enum (#6016)
  895. * Fix metrics auth token detection (#6006)
  896. * Fix repo header issues (#5995)
  897. * Fix bug when deleting a linked account will removed all (#5989)
  898. * Make organization dropdown scrollable when using mouse wheel (#5988)
  899. * Fix empty ssh key importing in ldap (#5984)
  900. * Admin config page mailertype setting option update (#5973)
  901. * Fix redirect loop during forced password change (#5965)
  902. * Show user who created the repository instead of the organisation in action feed (#5948)
  903. * Remove all CommitStatus when a repo is deleted (#5940)
  904. * Fix ssh deploy and user key constraints (#1357) (#5939)
  905. * Fix log output (#5938)
  906. * Set PusherName and PusherID to owner on deploy key to fix pushing with deploy keys (#5935)
  907. * Fix compare button (#5929)
  908. * Fix bug when read public repo lfs file (#5912)
  909. * Only allow local login if password is non-empty (#5906)
  910. * Recover panic in orgmode.Render if bad orgfile (#4982) (#5903)
  911. * Provide better panic handling (#5902)
  912. * Respect value of REQUIRE_SIGNIN_VIEW (#5901)
  913. * Show a 404 not a 500 if a repo does not exist (#5900)
  914. * Ensure repo is loaded in mailer (Completely fix #5891) (#5895)
  915. * Ensure issue.Poster is loaded in mailIssueCommentToParticipants (#5891)
  916. * Correct footer height if screen-width is to small (fixes #5878) (#5889)
  917. * In gitea serv switch off console logger to fix #5866 (#5887)
  918. * Don't allow pull requests to be created on an archived repository (#5883)
  919. * Support reviews on a deleted file path (#5880)
  920. * Fix compare button on upstream repo leading to 404 (#5877)
  921. * Fix null pointer on not logged in attempt to Sudo (#5872)
  922. * Fix new release creation API to allow empty target (#5870)
  923. * Fix an error while adding a dependency via UI. (#5862)
  924. * Fix failing migration v67 (#5849)
  925. * Fix delete correct temp directory (#5839)
  926. * Make sure .git/info is created before generating .git/info/sparse-che… (#5825)
  927. * Fix topics saving internal error and disable for archived repos (#5821)
  928. * Fix TLS errors when using acme/autocert for local connections (#5820)
  929. * When creating new repository fsck option should be enabled (#5817)
  930. * Request for public keys only if LDAP attribute is set (#5816)
  931. * Fix serving of raw wiki files other than .md (#5814)
  932. * Fix migration 78 error mssql (#5791)
  933. * Disallow empty titles (#5785)
  934. * Fix the v78 migration script (#5776)
  935. * Ensure valid git author names passed in signatures (#5774)
  936. * Fix wrong assumption where a user is always said to have unassigned (her)himself (#5769)
  937. * Upgrade go-sql-driver/mysql to fix invalid connection error (#5748)
  938. * Fixing PostgreSQL dump creation (#5747)
  939. * Add proper CORS preflight origin validation (#5740)
  940. * Disable auto-migrate in docker container (#5730)
  941. * In basic auth check for tokens before call UserSignIn (#5725)
  942. * Pooled and buffered gzip implementation (#5722)
  943. * Ensure that sessions are passed into queries that could use the database to prevent deadlocks (#5718)
  944. * Keep file permissions during database migration (#5707)
  945. * Use correct value for "MSpan Structures Obtained" #4742 (#5706)
  946. * Refactor editor upload, update and delete to use git plumbing and add LFS support (#5702)
  947. * Update xorm to fix issue #5659 and #5651 (#5680)
  948. * Fix public will not be reused as public key after deleting as deploy key (#5671)
  949. * When redirecting, clean the path (#5669)
  950. * Don't list an issue on its own dependency list UI. (#5658)
  951. * Fix commit page showing status for current default branch (#5649) (#5650)
  952. * Only count users own actions for heatmap contributions (#5647)
  953. * Fix sqlite deadlock when assigning to a PR (#5640)
  954. * Refactor issue indexer (#5363)
  955. * TESTING
  956. * Run benchmark at tag to track performances (#6035)
  957. * Add test environment for MySQL8 (#5234)
  958. * BUILD
  959. * Use go 1.12 for tests and deprecate go 1.9 (#6186)
  960. * Makefile changes for Windows and easier development (#6103)
  961. * Update bleve dependency to latest master revision (#6100)
  962. * Switch to more recent build of xgo (#6070)
  963. * Add autoprefixer to css build (#6029)
  964. * Update the version of less (#6010)
  965. * Make log mailer for testing (#5893)
  966. * DOCS
  967. * Add more tests and docs for issue indexer, add db indexer type for searching from database (#6144)
  968. * update default value of `--must-change-password` cli flag (#6032)
  969. * Update and expand information about building Gitea (#6019)
  970. * Update U2F Section of app.ini.sample (#5994)
  971. * Update swagger for release API pagination (#5841)
  972. * Added docs for the tree api (#5834)
  973. * MISC
  974. * Add single commit API support (#5843)
  975. * Add missing GET teams endpoints (#5382)
  976. * Migrate database if app.ini found (#5290)
  977. ## [1.7.6](https://github.com/go-gitea/gitea/releases/tag/v1.7.6) - 2019-04-12
  978. * SECURITY
  979. * Prevent remote code execution vulnerability with mirror repo URL settings (#6593) (#6595)
  980. * BUGFIXES
  981. * Allow resend of confirmation email when logged in (#6482) (#6487)
  982. ## [1.7.5](https://github.com/go-gitea/gitea/releases/tag/v1.7.5) - 2019-03-27
  983. * BUGFIXES
  984. * Fix unitTypeCode not being used in accessLevelUnit (#6419) (#6423)
  985. * Fix bug where manifest.json was being requested without cookies and continuously creating new sessions (#6372) (#6383)
  986. * Fix ParsePatch function to work with quoted diff --git strings (#6323) (#6332)
  987. ## [1.7.4](https://github.com/go-gitea/gitea/releases/tag/v1.7.4) - 2019-03-12
  988. * SECURITY
  989. * Fix potential XSS vulnerability in repository description. (#6306) (#6308)
  990. * BUGFIXES
  991. * Fix wrong release commit id (#6224) (#6300)
  992. * Fix panic on empty signed commits (#6292) (#6300)
  993. * Fix organization dropdown not being scrollable when using mouse wheel (#5988) (#6246)
  994. * Fix displaying dashboard even if required to change password (#6214) (#6215)
  995. ## [1.7.3](https://github.com/go-gitea/gitea/releases/tag/v1.7.3) - 2019-02-27
  996. * BUGFIXES
  997. * Fix server 500 when trying to migrate to an already existing repository (#6188) (#6197)
  998. * Load Issue attributes for API /repos/{owner}/{repo}/issues/{index} (#6122) (#6185)
  999. * Fix bug whereby user could change private repository to public when force private enabled. (#6156) (#6165)
  1000. * Fix bug when update owner team then visit team's repo return 404 (#6119) (#6166)
  1001. * Fix heatmap and repository menu display in Internet Explorer 9+ (#6117) (#6137)
  1002. * Fix prohibit login check on authorization (#6106) (#6115)
  1003. * Fix LDAP protocol error regression by moving to ldap.v3 (#6105) (#6107)
  1004. * Fix deadlock in webhook PullRequest (#6102) (#6104)
  1005. * Fix redirect loop when password change is required and Gitea is installed as a suburl (#5965) (#6101)
  1006. * Fix compare button regression (#5929) (#6098)
  1007. * Recover panic in orgmode.Render if bad orgfile (#4982) (#5903) (#6097)
  1008. ## [1.7.2](https://github.com/go-gitea/gitea/releases/tag/v1.7.2) - 2019-02-14
  1009. * BUGFIXES
  1010. * Remove all CommitStatus when a repo is deleted (#5940) (#5941)
  1011. * Fix notifications on pushing with deploy keys by setting hook environment variables (#5935) (#5944)
  1012. * Silence console logger in gitea serv (#5887) (#5943)
  1013. * Handle milestone webhook events for issues and PR (#5947) (#5955)
  1014. * Show user who created the repository instead of the organization in action feed (#5948) (#5956)
  1015. * Fix ssh deploy and user key constraints (#1357) (#5939) (#5966)
  1016. * Fix bug when deleting a linked account will removed all (#5989) (#5990)
  1017. * Fix empty ssh key importing in ldap (#5984) (#6009)
  1018. * Fix metrics auth token detection (#6006) (#6017)
  1019. * Create repository on organisation by default on its dashboard (#6026) (#6048)
  1020. * Make sure labels are actually returned in API (#6053) (#6059)
  1021. * Switch to more recent build of xgo (#6070) (#6072)
  1022. * In basic auth check for tokens before call UserSignIn (#5725) (#6083)
  1023. ## [1.7.1](https://github.com/go-gitea/gitea/releases/tag/v1.7.1) - 2019-01-31
  1024. * SECURITY
  1025. * Disable redirect for i18n (#5910) (#5916)
  1026. * Only allow local login if password is non-empty (#5906) (#5908)
  1027. * Fix go-get URL generation (#5905) (#5907)
  1028. * BUGFIXES
  1029. * Fix TLS errors when using acme/autocert for local connections (#5820) (#5826)
  1030. * Request for public keys only if LDAP attribute is set (#5816) (#5819)
  1031. * Fix delete correct temp directory (#5840) (#5839)
  1032. * Fix an error while adding a dependency via UI (#5862) (#5876)
  1033. * Fix null pointer in attempt to Sudo if not logged in (#5872) (#5884)
  1034. * When creating new repository fsck option should be enabled (#5817) (#5885)
  1035. * Prevent nil dereference in mailIssueCommentToParticipants (#5891) (#5895) (#5894)
  1036. * Fix bug when read public repo lfs file (#5913) (#5912)
  1037. * Respect value of REQUIRE_SIGNIN_VIEW (#5901) (#5915)
  1038. * Fix compare button on upstream repo leading to 404 (#5877) (#5914)
  1039. * DOCS
  1040. * Added docs for the tree api (#5835)
  1041. * MISC
  1042. * Include Go toolchain to --version (#5832) (#5830)
  1043. ## [1.7.0](https://github.com/go-gitea/gitea/releases/tag/v1.7.0) - 2019-01-22
  1044. * SECURITY
  1045. * Do not display the raw OpenID error in the UI (#5705) (#5712)
  1046. * When redirecting clean the path to avoid redirecting to external site (#5669) (#5679)
  1047. * Prevent DeleteFilePost doing arbitrary deletion (#5631)
  1048. * BREAKING
  1049. * Restrict permission check on repositories and fix some problems (#5314)
  1050. * Show only opened milestones on issues page milestone filter (#5051)
  1051. * FEATURE
  1052. * Implement git refs API for listing references (branches, tags and other) (#5354)
  1053. * Approvals at Branch Protection (#5350)
  1054. * Add raw blob endpoint to get objects by SHA ID (#5334)
  1055. * Add api for user to create org (#5268)
  1056. * Create AuthorizedKeysCommand (#5236)
  1057. * User action heatmap (#5131)
  1058. * Refactor heatmap to vue component (#5401)
  1059. * Webhook for Pull Request approval/rejection (#5027)
  1060. * Add command for migrating database (#4954)
  1061. * Search keyword by splitting provided values by , (#4939)
  1062. * Create Progressive Web App (#4730)
  1063. * Give user a link to create PR after push (#4716)
  1064. * Add rebase with merge commit merge style (#3844) (#4052)
  1065. * BUGFIXES
  1066. * Disallow empty titles (#5785) (#5794)
  1067. * Fix sqlite deadlock when assigning to a PR (#5640) (#5642)
  1068. * Don't close issues via commits on non-default branch. (#5622) (#5643)
  1069. * Fix commit page showing status for current default branch (#5650) (#5653)
  1070. * Only count users own actions for heatmap contributions (#5647) (#5655)
  1071. * Update xorm to fix issue postgresql dumping issues (#5680) (#5692)
  1072. * Use correct value for "MSpan Structures Obtained" (#5706) (#5716)
  1073. * Fix bug on modifying sshd username (#5624)
  1074. * Delete tags in mirror which are removed for original repo. (#5609)
  1075. * Fix wrong text getting saved on editing second comment on an issue. (#5608)
  1076. * Fix nil pointer when adding a due date (#5587)
  1077. * Fix type mismatch of format string (#5574)
  1078. * Fix bug on upload file name (#5571)
  1079. * Issue is not overdue when it is on the same date #5566 (#5568)
  1080. * Fix indexer reindex bug when gitea restart (#5563)
  1081. * Fix table name typo on SQL (#5562)
  1082. * Synchronize SSH keys on login with LDAP + Fix SQLite deadlock on ldap ssh key deletion (#5557)
  1083. * Fix makefile generate buildstep (#5556)
  1084. * Fix nil pointer base branch bug (#5555)
  1085. * Fix permission check on api create org (#5523)
  1086. * Fix detect force push failure on deletion of protected branches (#5522)
  1087. * Fix approvals limitation (#5521)
  1088. * Fix bug when a read perm user to edit his issue (#5516)
  1089. * Fix adding reaction fail for read permission user (#5515)
  1090. * Fixing MSSQL timestamp type (#5511)
  1091. * Fix forgot deletion of notification when delete repository (#5506)
  1092. * Fix empty wiki (#5504)
  1093. * Fix clone wiki failed via ssh (#5503)
  1094. * Fix code review on mssql (#5502)
  1095. * Fix lfs version check warning log when using ssh protocol (#5501)
  1096. * Fix topic name length on database (#5493)
  1097. * Ensure that the `closed_at` is set for closed issues (#5449)
  1098. * Admin should be able to delete repos via the API even if he is not a member of the organization (#5443)
  1099. * Word-Break the WebHook url to prevent a ui-break (#5432)
  1100. * Fix forgot removed records when deleting user (#5429)
  1101. * Fix repository deletion when there is large number of issues in it (#5426)
  1102. * Fix heatmap colors for Chrome/Safari (#5421)
  1103. * Fix password variable shadowing (#5405)
  1104. * Fix dependent issue searching when gitea is run in subpath (#5392)
  1105. * Don't force a password change for the admin user when creating an account via cli (#5391)
  1106. * API: '/orgs/:org/repos': return private repos with read access (#5383)
  1107. * Don't send assign webhooks when creating issue (#5365)
  1108. * Removing Labels via EditPullRequest API (#5348)
  1109. * Migration fixes for gogs (0.11.66) to gitea (1.6.0) #5318 (#5341)
  1110. * Fix bug when users have serval teams with different units on different repositories (#5307)
  1111. * Fix U2F if gitea is configured in subpath (#5302)
  1112. * Fix file edit change preview functionality (#5300)
  1113. * Update gitignore list (#5258)
  1114. * Fixed heatmap not working in mssql (#5248)
  1115. * Fixed wrong api request url for instances running in subfolders (#5247)
  1116. * Fix compatibility heatmap with mysql 8 (#5232)
  1117. * Fix data race on migrate repository (#5224)
  1118. * Fix sqlite and mssql lock (#5214)
  1119. * Fix sqlite lock (#5210)
  1120. * Fix: Accept web-command cli flags if web-command is commited (#5200)
  1121. * Fix: Add secret to all webhook's payload where it has been missing (#5199)
  1122. * Fix race on updatesize (#5190)
  1123. * Fix create team, update team missing units (#5188)
  1124. * Fix sqlite lock (#5184 & #5176)
  1125. * Fix showing pull request link when delete a branch (#5166)
  1126. * Fix JSON result of empty array in heatmap data array (#5154)
  1127. * Update build tags for sqlite_unlock notify (#5144)
  1128. * This commit will reduce join star, repo_topic, topic tables on repo search, so that fix extra columns problem on mssql (#5136)
  1129. * Fix deadlock when sqlite (#5118)
  1130. * Add comment replies (#5104)
  1131. * Fix home page template regression (#5102)
  1132. * Fix regex to support optional end line of old section in diff hunk (#5096)
  1133. * LDAP via simple auth separate bind user and search base (#5055)
  1134. * Fix markdown image with link (#4675)
  1135. * Fix to 3819 - Filtering issues by tags on main screen issues (#3824)
  1136. * ENHANCEMENT
  1137. * Delete organization endpoint added (#5601)
  1138. * Update Licenses (#5558)
  1139. * Support reverse proxy providing email (#5554)
  1140. * Add git protocol v2 support via SSH on Docker image (#5520)
  1141. * Add tests for api user orgs (#5494)
  1142. * Allow link verification for services like Mastodon (#5481)
  1143. * Improve team members and repositories settings UI (#5457)
  1144. * Remove the required class from optional ssh port in installation page (#5428)
  1145. * Explicitly disable Git credential helper (#5367)
  1146. * Setting Labels via EditPullRequest API (#5347)
  1147. * Implement pasting image from clipboard for browsers that supports that (#5317)
  1148. * Milestone issues and pull requests (#5293)
  1149. * Support envs on external render commands (#5278)
  1150. * Add option to disable automatic mirror syncing. (#5242)
  1151. * Remove unused db init on commands serv, update, hooks (#5225)
  1152. * Serve audio files using HTML5 audio tag (#5221)
  1153. * Pass link prefixes to external markup parsers (#5201)
  1154. * Add AutoHead functionality. (#5186)
  1155. * Fix emojis not showing in commit messages (#5168)
  1156. * Block registration based on email domain (#5157)
  1157. * Update vendor/go-sqlite3 (#5133 & #5162)
  1158. * Update x/net lib (#5169)
  1159. * Show review summary in pull requests (#5132)
  1160. * Use type switch (#5122)
  1161. * Remove duplicated if bodies (#5121)
  1162. * Remove check for negative length (#5120)
  1163. * Make switch more clear (#5119)
  1164. * Use named const instead of a raw string (#5115)
  1165. * Fix issue where ecdsa and other key types are not synced from LDAP (#5092) (#5094)
  1166. * Refactor: err != nil check, just return error instead (#5093)
  1167. * Add notification interface and refactor UI notifications (#5085)
  1168. * Use APP_NAME on home page (#5048)
  1169. * Explicitly decide whether to use TLS in mailer's configuration (#5024)
  1170. * Generate random password (#5023)
  1171. * UX of link account (Step 1) (#5006)
  1172. * Make sure argsSet verifies string isn't empty too (#4980)
  1173. * Improve performance of dashboard (#4977)
  1174. * Keys API changes (#4960)
  1175. * Add must-change-password flag to cli for creating a user (#4955)
  1176. * Use native go method to get current user rather than environment variable (#4930)
  1177. * Make gitea serv use api/internal (#4886)
  1178. * Add support for search by uid (#4876)
  1179. * Allow to add organization members as collaborators on organization owned repositories (#4748)
  1180. * TESTING
  1181. * Kill testing processes if the test takes too long (#5174)
  1182. * Update outdated Go toolchain version for .drone.yml (#5146)
  1183. * Increase the retry limit to 20 times and the interval to 200ms (#5134)
  1184. * Retry test-fixtures loading in case of transaction rollback (#5125)
  1185. * Added test environment for mssql (#4282)
  1186. * BUILD
  1187. * Replace lint to revive (#5422)
  1188. * Update golang version in Dockerfile (#5246)
  1189. * DOCS
  1190. * Typo in routers/api/v1/org/org.go fixed. (#5598)
  1191. * Update the docs for sqlite_unlock_notify (#5145)
  1192. * CN translation of docs part (#5049)
  1193. * Kubernetes deployment file (#5046)
  1194. * MISC
  1195. * Upgrade alpine to 3.8 (#5423)
  1196. * Git-Trees API (#5403)
  1197. * Only chown directories during docker setup if necessary. Fix #4425 (#5064)
  1198. ## [1.6.4](https://github.com/go-gitea/gitea/releases/tag/v1.6.4) - 2019-01-15
  1199. * BUGFIX
  1200. * Fix SSH key now can be reused as public key after deleting as deploy key (#5671) (#5685)
  1201. * When redirecting clean the path to avoid redirecting to external site (#5669) (#5703)
  1202. * Fix to use correct value for "MSpan Structures Obtained" (#5706) (#5715)
  1203. ## [1.6.3](https://github.com/go-gitea/gitea/releases/tag/v1.6.3) - 2019-01-04
  1204. * SECURITY
  1205. * Prevent DeleteFilePost doing arbitrary deletion (#5631)
  1206. * BUGFIX
  1207. * Fix wrong text getting saved on editing second comment on an issue (#5608)
  1208. ## [1.6.2](https://github.com/go-gitea/gitea/releases/tag/v1.6.2) - 2018-12-21
  1209. * SECURITY
  1210. * Sanitize uploaded file names (#5571) (#5573)
  1211. * HTMLEncode user added text (#5570) (#5575)
  1212. * BUGFIXES
  1213. * Fix indexer reindex bug when gitea restart (#5563) (#5564)
  1214. * Remove a double slash in the HTTPS redirect with Let's Encrypt (#5537) (#5539)
  1215. * Fix bug when a read perm user to edit his issue (#5516) (#5534)
  1216. * Detect force push failure on deletion of protected branches (#5522) (#5531)
  1217. * Let's Encrypt handler listens on correct port for certificate validation (#5525) (#5527)
  1218. * Fix forgot deletion of notification when delete repository (#5506) (#5514)
  1219. * Fix undeleted content when deleting user (#5429) (#5509)
  1220. * Fix empty wiki (#5504) (#5508)
  1221. ## [1.6.1](https://github.com/go-gitea/gitea/releases/tag/v1.6.1) - 2018-12-08
  1222. * BUGFIXES
  1223. * Fix dependent issue searching when gitea is run in subpath (#5392) (#5400)
  1224. * API: '/orgs/:org/repos': return private repos with read access (#5393)
  1225. * Fix repository deletion when there is large number of issues in it (#5426) (#5434)
  1226. * Word-break the WebHook url to prevent a ui-break (#5445)
  1227. * Admin should be able to delete repos via the API even if they are not a member of the organization (#5443) (#5447)
  1228. * Ensure that the `closed_at` is set for closed (#5450)
  1229. * Fix topic name length on database (#5493) (#5495)
  1230. ## [1.6.0](https://github.com/go-gitea/gitea/releases/tag/v1.6.0) - 2018-11-22
  1231. * BREAKING
  1232. * Respect email privacy option in user search via API (#4512)
  1233. * Simply remove tidb and deps (#3993)
  1234. * Swagger.v1.json template (#3572)
  1235. * SECURITY
  1236. * Add CSRF checking to reqToken and add reqToken to admin API routes (#5272) (#5250)
  1237. * Improve URL validation for external wiki and external issues (#4710)
  1238. * Make cookies HttpOnly and obey COOKIE_SECURE flag (#4706)
  1239. * Don't disclose emails of all users when sending out emails (#4664)
  1240. * Check that repositories can only be migrated to own user or organizations (#4366)
  1241. * FEATURE
  1242. * Add comment replies (#5147) (#5104)
  1243. * Pull request review/approval and comment on code (#3748)
  1244. * Added dependencies for issues (#2196) (#2531)
  1245. * Add the ability to have built in themes in Gitea and provide dark theme arc-green (#4198)
  1246. * Add sudo functionality to the API (#4809)
  1247. * Add oauth providers via cli (#4591)
  1248. * Disable merging a WIP Pull request (#4529)
  1249. * Force user to change password (#4489)
  1250. * Add letsencrypt to Gitea (#4189)
  1251. * Add push webhook support for mirrored repositories (#4127)
  1252. * Add csv file render support defaultly (#4105)
  1253. * Add Recaptcha functionality to Gitea (#4044)
  1254. * ENHANCEMENT
  1255. * Fix milestones sorted wrongly (#4987)
  1256. * Allow api to create tags for releases if they don't exist (#4890)
  1257. * Fix #4877 to follow the OpenID Connect Audiences spec (#4878)
  1258. * Enforce token on api routes [fixed critical security issue #4357] (#4840)
  1259. * Update legacy branch and tag URLs in dashboard to new format (#4812)
  1260. * Slack webhook channel name cannot be empty or just contain an hashtag (#4786)
  1261. * Add whitespace handling to PR-comparsion (#4683)
  1262. * Make reverse proxy auth optional (#4643)
  1263. * MySQL TLS (#4642)
  1264. * Make sure to set PR split view when creating/previewing a pull request (#4617)
  1265. * Log user in after a successful sign up (#4615)
  1266. * Fix typo IsPullReuqestBroken -> IsPullRequestBroken (#4578)
  1267. * Allow admin toggle forcing a password change for newly created users (#4563)
  1268. * Update jQuery to v1.12.4 (#4551)
  1269. * Env var GITEA_PUSHER_EMAIL (#4516)
  1270. * Feat(repo): support search repository by topic name (#4505)
  1271. * Small improvements to dependency UI (#4503)
  1272. * Make max commits in graph configurable (#4498)
  1273. * Add valid for lfs oid (#4461)
  1274. * Add shortcut to save wiki page (#4452)
  1275. * Allow administrator to create repository for any organization (#4368)
  1276. * Fix repository last updated time update when delete a user who watched the repo (#4363)
  1277. * Switch plaintext scratch tokens to use hash instead (#4331)
  1278. * Increase default TOTP secret size to 320 bits (#4287)
  1279. * Keep preseeded database password (#4284)
  1280. * Implemented hover text showing user FullName (#4261)
  1281. * Add ability to delete a token (#4235)
  1282. * Fix typos in i18n variable names. (#4080)
  1283. * Api: repos/search: add parameters to control the sort order (#3964)
  1284. * Add missing path in the Docker app.ini template (#2181)
  1285. * Add file name and branch to page title (#4902)
  1286. * Offline use of google fonts (#4872)
  1287. * Add missing History link to directory listings v2 (#4829)
  1288. * Locale for Edit and Remove due date issue (#4802)
  1289. * Disable 'May Import Local Repository' when is disabled by setting (Is… (#4780)
  1290. * API /admin/users/{username} missing parameter (#4775)
  1291. * Display error when adding a user to a team twice (#4746)
  1292. * Remove UsePrivilegeSeparation from the Docker sshd_config, see #2876 (#4722)
  1293. * Focus title input when clicking helper link (#4696)
  1294. * Add vendor to user reserved words and format words list according alphabet (#4685)
  1295. * Add gitea/issues link to 500 page (#4654)
  1296. * Hide home button when landing page is not set to home (#4651)
  1297. * Remove link to GitHub issues in 404 template (#4639)
  1298. * Cmd/serve: pprof cpu and memory profile dumps to disk (#4560)
  1299. * Add flash message after an account has been successfully activated (#4510)
  1300. * Prevent html entity escaping on delete branch (#4471)
  1301. * Locale for button Edit on protected branch (#4442)
  1302. * Update notification icon (#4343)
  1303. * Added front-end topics validation (#4316)
  1304. * Don't display buttons if there are no system notifications (#4280)
  1305. * Issue due date api (#3890)
  1306. * BUGFIXES
  1307. * dont' send assign webhooks when creating issue (#5365)
  1308. * Fix create team, update team missing units (#5188)
  1309. * Fix file edit change preview functionality (#5300)
  1310. * *ix bug when users have serval teams with different units on different repositories (#5307)
  1311. * Fix U2F if gitea is configured in subpath (#5302)
  1312. * Fix markdown image with link (#4675)
  1313. * Remove maxlines option for file logger (#5282)
  1314. * Fix wrong api request url for instances running in subfolders (#5261) (#5247)
  1315. * Accept web-command cli flags if web-command is commited (#5245) (#5200)
  1316. * Reduce join star, repo_topic, topic tables on repo search, to resolve extra columns problem on MSSQL (#5136) (#5229)
  1317. * Fix data race on migrate repository (#5224) (#5230)
  1318. * Add secret to all webhook's payload where it has been missing (#5208) (#5199)
  1319. * Fix sqlite and MSSQL lock (#5210) (#5223) (#5214) (#5218) (#5176) (#5179)
  1320. * Fix race on updatesize (#5190) (#5215)
  1321. * Fix filtering issues by tags on main screen issues (#5219) (#3824)
  1322. * Fix SQL quoting (#5137) (#5117)
  1323. * Fix regex to support optional end line of old section in diff hunk (#5097) (#5096)
  1324. * Fix release creation via API (#5076)
  1325. * Remove links from topics in edit mode (#5026)
  1326. * Fix missing AppSubUrl in few more templates (fixup) (#5021)
  1327. * Fix missing AppSubUrl in some templates (#5020)
  1328. * Hide outdated comments in file view (#5017)
  1329. * Upgrade gopkg.in/testfixtures.v2 (#4999)
  1330. * Disable debug routes unless PPROF is enabled in configuration (#4995)
  1331. * Fix user menu item styling (#4985)
  1332. * Fix layout of the topics editing form (#4971)
  1333. * Fix null pointer dereference in ParseCommitWithSignature (#4962)
  1334. * Fix url in discord webhook (#4953)
  1335. * Detect charset and convert non UTF-8 files for display (#4950)
  1336. * Make sure to catch the right error so it is displayed on the UI (#4945)
  1337. * Fix(topics): don't redirect to explore page. (#4938)
  1338. * Fix bug forget to remove Stopwatch when remove repository (#4928)
  1339. * Fix bug when repo remained bare if multiple branches pushed in single push (#4923)
  1340. * Fix: Crippled diff (#4726) (#4900)
  1341. * Fix trimming of markup section names (#4863)
  1342. * Issues api allow pulls and fix #4832 (#4852)
  1343. * Do not autocreate directory for new users/orgs (#4828) (#4849)
  1344. * Fix redirect with non-ascii branch names (#4764) (#4810)
  1345. * Fix missing release title in webhook (#4783) (#4796)
  1346. * User shouldn't be able to approve or reject his/her own PR (#4729)
  1347. * Make sure to reset commit count in the cache on mirror syncing (#4720)
  1348. * Fixed bug where team with admin privelege type doesn't get any unit (#4719)
  1349. * Fix incorrect caption of webhook setting (#4701) (#4717)
  1350. * Allow WIP marker to contains < or > (#4709)
  1351. * Hide org/create menu item in Dashboard if user has no rights (#4678) (#4680)
  1352. * Site admin could create repos even MAX_CREATION_LIMIT=0 (#4645)
  1353. * Fix custom templates being ignored (#4638)
  1354. * Fix starring icon after semantic ui update (#4628)
  1355. * Fix Split-View line adjustment (#4622)
  1356. * Fix integer constant overflows in tests (#4616)
  1357. * Push whitelist now doesn't apply to branch deletion (#4601) (#4607)
  1358. * Fix bugs when too many IN variables (#4594)
  1359. * Fix failure on creating pull request with assignees (#4419) (#4583)
  1360. * Fix panic issue on update avatar email (#4580) (#4581)
  1361. * Fix status code label for a successful webhook (#4540)
  1362. * An inactive user shouldn't be able to be added as a collaborator (#4535)
  1363. * Don't fail silently if trying to add a collaborator twice (#4533)
  1364. * Fix incorrect MergeWhitelistTeamIDs check in CanUserMerge function (#4519) (#4525)
  1365. * Fix out-of-transaction query in removeOrgUser (#4521) (#4522)
  1366. * Fix migration from older releases (#4495)
  1367. * Accept 'Data:' in commit graph (#4487)
  1368. * Update xorm to latest version and fix correct `user` table referencing in sql (#4473)
  1369. * Relative URLs for LibreJS page (#4460)
  1370. * Redirect to correct page after using scratch token (#4458)
  1371. * Fix column droping for MSSQL that need new transaction for that (#4440)
  1372. * Replace src with raw to fix image paths (#4377)
  1373. * Add default merge options when creating new repository (#4369)
  1374. * Fix docker build (#4358)
  1375. * Fixes repo membership check in API (#4341)
  1376. * Dep upgrade mysql lib (#4161)
  1377. * Fix some issues with special chars in branch names (#3767)
  1378. * Responsive design fixes (#4508)
  1379. * TRANSLATION
  1380. * Fix punctuation in English translation (#4958)
  1381. * Fix translation (#4355)
  1382. ## [1.5.3](https://github.com/go-gitea/gitea/releases/tag/v1.5.3) - 2018-10-31
  1383. * SECURITY
  1384. * Fix remote command execution vulnerability in upstream library (#5177) (#5196)
  1385. ## [1.5.2](https://github.com/go-gitea/gitea/releases/tag/v1.5.2) - 2018-10-09
  1386. * SECURITY
  1387. * Enforce token on api routes (#4840) (#4905)
  1388. * BUGFIXES
  1389. * Remove links from topics in edit mode (#5030)
  1390. * Detect charset and convert non UTF-8 files for display (#4950) (#4994)
  1391. * Fix layout of the topics editing form (#4971) (#4993)
  1392. * Fix null pointer dereference in ParseCommitWithSignature (#4964)
  1393. * Fix url in discord webhook (#4951)
  1394. * Fix font-cropping UI bug in diff (#4726) (#4929)
  1395. * Fix bug forget to remove Stopwatch when remove repository (#4933)
  1396. * Fix bug when repo remained bare if multiple branches pushed (#4927)
  1397. * Fix redirect with non-ascii branch names (#4764) (#4887)
  1398. * Fix issues api allow pulls (#4852) (#4862)
  1399. * Fix trimming of markup section names (#4864)
  1400. ## [1.5.1](https://github.com/go-gitea/gitea/releases/tag/v1.5.1) - 2018-09-03
  1401. * SECURITY
  1402. * Don't disclose emails of all users when sending out emails (#4784)
  1403. * Improve URL validation for external wiki and external issues (#4710) (#4740)
  1404. * Make cookies HttpOnly and obey COOKIE_SECURE flag (#4706) (#4707)
  1405. * BUGFIXES
  1406. * Fix missing release title in webhook (#4783) (#4800)
  1407. * Make sure to reset commit count in the cache on mirror syncing (#4770)
  1408. * Fixed bug where team with admin privelege type doesn't get any unit (#4759)
  1409. * Fix failure on creating pull request with assignees (#4583) (#4727)
  1410. * Hide org/create menu item in Dashboard if user has no rights (#4678) (#4686)
  1411. * TRANSLATION
  1412. * Fix incorrect caption of webhook setting (#4701) (#4718)
  1413. ## [1.5.0](https://github.com/go-gitea/gitea/releases/tag/v1.5.0) - 2018-08-10
  1414. * SECURITY
  1415. * Check that repositories can only be migrated to own user or organizations (#4366) (#4370)
  1416. * Limit uploaded avatar image-size to 4096px x 3072px by default (#4353)
  1417. * Do not allow to reuse TOTP passcode (#3878)
  1418. * BUGFIXES
  1419. * Fix column droping for MSSQL that need new transaction for that (#4440) (#4484)
  1420. * Redirect to correct page after using scratch token (#4458) (#4472)
  1421. * Replace src with raw to fix image paths (#4377) (#4386)
  1422. * Fixes repo membership check in API (#4341) (#4379)
  1423. * Add default merge options when adding new repository (#4369) (#4373)
  1424. * Fix repository last updated time update when delete a user who watched the repo (#4363) (#4371)
  1425. * Fix html entity escaping in branch deletion message (#4471) (#4485)
  1426. * Fix out-of-transaction query in removeOrgUser (#4521) (#4524)
  1427. * Fix incorrect MergeWhitelistTeamIDs check in CanUserMerge function (#4519)
  1428. * Fix panic issue on update avatar email (#4580) (#4590)
  1429. * Fix bugs when too many IN variables (#4594) (#4597)
  1430. * Push whitelist now doesn't apply to branch deletion (#4601) (#4640)
  1431. * Site admin could create repos even MAX_CREATION_LIMIT=0 (#4645) (#4650)
  1432. * FEATURE
  1433. * Add cli commands to regen hooks & keys (#3979)
  1434. * Add support for FIDO U2F (#3971)
  1435. * Added user language setting (#3875)
  1436. * LDAP Public SSH Keys synchronization (#1844)
  1437. * Add topic support (#3711)
  1438. * Multiple assignees (#3705)
  1439. * Add protected branch whitelists for merging (#3689)
  1440. * Global code search support (#3664)
  1441. * Add label descriptions (#3662)
  1442. * Add issue search via API (#3612)
  1443. * Add repository setting to enable/disable health checks (#3607)
  1444. * Emoji Autocomplete (#3433)
  1445. * Implements generator cli for secrets (#3531)
  1446. * ENHANCEMENT
  1447. * Add more webhooks support and refactor webhook templates directory (#3929)
  1448. * Add new option to allow only OAuth2/OpenID user registration (#3910)
  1449. * Add option to use paged LDAP search when synchronizing users (#3895)
  1450. * Symlink icons (#1416)
  1451. * Improve release page UI (#3693)
  1452. * Add admin dashboard option to run health checks (#3606)
  1453. * Add branch link in branch list (#3576)
  1454. * Reduce sql query times in retrieveFeeds (#3547)
  1455. * Option to enable or disable swagger endpoints (#3502)
  1456. * Add missing licenses (#3497)
  1457. * Reduce repo indexer disk usage (#3452)
  1458. * Enable caching on assets and avatars (#3376)
  1459. * Add repository search ordered by stars/forks. Forks column in admin repo list (#3969)
  1460. * Add Environment Variables to Docker template (#4012)
  1461. * LFS: make HTTP auth period configurable (#4035)
  1462. * Add config path as an optionial flag when changing pass via CLI (#4184)
  1463. * Refactor User Settings sections (#3900)
  1464. * Allow square brackets in external issue patterns (#3408)
  1465. * Add Attachment API (#3478)
  1466. * Add EnableTimetracking option to app settings (#3719)
  1467. * Add config option to enable or disable log executed SQL (#3726)
  1468. * Shows total tracked time in issue and milestone list (#3341)
  1469. * TRANSLATION
  1470. * Improve English grammar and consistency (#3614)
  1471. * DEPLOYMENT
  1472. * Allow Gitea to run as different USER in Docker (#3961)
  1473. * Provide compressed release binaries (#3991)
  1474. * Sign release binaries (#4188)
  1475. ## [1.4.3](https://github.com/go-gitea/gitea/releases/tag/v1.4.3) - 2018-06-26
  1476. * SECURITY
  1477. * HTML-escape plain-text READMEs (#4192) (#4214)
  1478. * Fix open redirect vulnerability on login screen (#4312) (#4312)
  1479. * BUGFIXES
  1480. * Fix broken monitoring page when running processes are shown (#4203) (#4208)
  1481. * Fix delete comment bug (#4216) (#4228)
  1482. * Delete reactions added to issues and comments when deleting repository (#4232) (#4237)
  1483. * Fix wiki URL encoding bug (#4091) (#4254)
  1484. * Fix code tab link when viewing tags (#3908) (#4263)
  1485. * Fix webhook type conflation (#4285) (#4285)
  1486. ## [1.4.2](https://github.com/go-gitea/gitea/releases/tag/v1.4.2) - 2018-06-04
  1487. * BUGFIXES
  1488. * Adjust z-index for floating labels (#3939) (#3950)
  1489. * Add missing token validation on application settings page (#3976) #3978
  1490. * Webhook and hook_task clean up (#4006)
  1491. * Fix webhook bug of response info is not displayed in UI (#4023)
  1492. * Fix writer cannot read bare repo guide (#4033) (#4039)
  1493. * Don't force due date to current time (#3830) (#4057)
  1494. * Fix wiki redirects (#3919) (#4065)
  1495. * Fix attachment ENABLED (#4064) (#4066)
  1496. * Added deletion of an empty line at the end of file (#4054) (#4074)
  1497. * Use ResolveReference instead of path.Join (#4073)
  1498. * Fix #4081 Check for leading / in base before removing it (#4083)
  1499. * Respository's home page not updated after first push (#4075)
  1500. ## [1.4.1](https://github.com/go-gitea/gitea/releases/tag/v1.4.1) - 2018-05-03
  1501. * BREAKING
  1502. * Add "error" as reserved username (#3882) (#3886)
  1503. * SECURITY
  1504. * Do not allow inactive users to access repositories using private key (#3887) (#3889)
  1505. * Fix path cleanup in file editor, when initilizing new repository and LFS oids (#3871) (#3873)
  1506. * Remove unnecessary allowed safe HTML (#3778) (#3779)
  1507. * Correctly check http git access rights for reverse proxy authorized users (#3721) (#3743)
  1508. * BUGFIXES
  1509. * Fix to use only needed columns from tables to get repository git paths (#3870) (#3883)
  1510. * Fix GPG expire time display when time is zero (#3584) (#3884)
  1511. * Fix to update only issue last update time when adding a comment (#3855) (#3860)
  1512. * Fix repository star count after deleting user (#3781) (#3783)
  1513. * Use the active branch for the code tab (#3720) (#3776)
  1514. * Set default branch name on first push (#3715) (#3723)
  1515. * Show clipboard button if disable HTTP of git protocol (#3773) (#3774)
  1516. ## [1.4.0](https://github.com/go-gitea/gitea/releases/tag/v1.4.0) - 2018-03-25
  1517. * BREAKING
  1518. * Drop deprecated GOGS\_WORK\_DIR use (#2946)
  1519. * Fix API status code for hook creation (#2814)
  1520. * SECURITY
  1521. * Escape branch name in dropdown menu (#3691) (#3692)
  1522. * Refactor and simplify to correctly validate redirect to URL (#3674) (#3676)
  1523. * Fix escaping changed title in comments (#3530) (#3534)
  1524.  * Escape search query (#3486) (#3488)
  1525. * Sanitize logs for mirror sync (#3057)
  1526. * FEATURE
  1527. * Serve .patch and .diff for pull requests (#3305, #3293)
  1528. * Add repo-sync-releases admin command (#3254)
  1529. * Support default private when creating or migrating repository (#3239)
  1530. * Writable deploy keys (closes #671) (#3225)
  1531. * Add Pull Request merge options - Ignore white-space for conflict checking, Rebase, Squash merge (#3188)
  1532. * Added progressbar for issues with checkboxes (#1146). (#3171)
  1533. * Mention completion for issue editor. (#3136)
  1534. * Add 'mark all read' option to notifications (#3097)
  1535. * Git LFS lock api (#2938)
  1536. * Add reactions to issues/PR and comments (#2856)
  1537. * Add dingtalk webhook (#2777)
  1538. * Responsive view (#2750)
  1539. * BUGFIXES
  1540. * Fix wiki inter-links with spaces (#3560) (#3632)
  1541. * Fix query protected branch bug (#3563) (#3571)
  1542. * Fix remove team member issue (#3566) (#3570)
  1543. * Fix the protected branch panic issue (#3567) (#3569)
  1544. * If Mirrors repository no content is fetched, updated time should not be changed (#3551) (#3565)
  1545. * Bug fix for mirrored repository releases sorted (#3522) (#3555)
  1546. * Add issue closed time column to fix activity closed issues list (#3537) (#3540)
  1547.  * Update markbates/goth library to support OAuth2 with new dropbox API (#3533) (#3539)
  1548.  * Fixes missing avatars in offline mode (#3471) (#3477)
  1549.  * Fix synchronization bug in repo indexer (#3455) (#3461)
  1550.  * Fix rendering of wiki page list if wiki repo contains other files (#3454) (#3463)
  1551. * Fix webhook X-GitHub-* headers casing for better compatibility (#3429)
  1552. * Add content type and doctype to requests made with go-get (#3426, #3423)
  1553. * Fix SQL type error for webhooks (#3424)
  1554. * Fix PR merge error (#3421)
  1555. * Recognize more characters in crossreferenced repo name (#3413)
  1556. * Fix MSSQL bug on org (#3405)
  1557. * HTML escape all lines of the search result (#3402)
  1558. * Change local copy origin url after repository rename (#3399)
  1559. * Force-push to base repo's ref/pull/#/head (#3393)
  1560. * Fix bug when a user delete but assigned on issue (#3318)
  1561. * Use issue number/index instead of id for API URL. Fix #3297 (#3298)
  1562. * Fix repo-transfer-and-team-repo-count bug (#3241)
  1563. * Fix always-on SSL Mode checkbox in admin page (#3208)
  1564. * Fix source download link when no code unit allowed (#3166)
  1565. * Fix org owner cannot be removed if he is not in owner team (#3164)
  1566. * Fix run web with -p push failed (#3154)
  1567. * Fix gpg tmpl (#3153)
  1568. * Fix SSH auth lfs locks (#3152)
  1569. * Improvements for supporting UI Location (#3146)
  1570. * Fix new pull request link (#3133)
  1571. * Fix missing branch in release bug (#3108)
  1572. * Allow adding collaborators with (fullname) (#3103)
  1573. * Fix repo links (#3093)
  1574. * fix lfs url refs + keep path upper/lowercase in db. (#3092)
  1575. * Fix redis session failed (#3086)
  1576. * Fix bugs in issue dashboard stats (#3073)
  1577. * Fix avatar URLs (#3069)
  1578. * Fix ref parsing in commit messages (#3067)
  1579. * Fix issue list branch link broken (#3061)
  1580. * sendmail: correct option to set envelope-sender (#3044)
  1581. * Fix missing password length check when change password (#3039)
  1582. * Fix git lfs path (#3016)
  1583. * Fix API-Endpoint release (#3005) (#3012)
  1584. * Set OpenID support on by default when installing new instance (#3010)
  1585. * Various wiki bug fixes (#2996)
  1586. * Fix go-get, src and raw urls to new scheme (#2978)
  1587. * Fix error when add user has full name to team (#2973)
  1588. * Fix memcache support when value is returned as string always (#2924)
  1589. * ENHANCEMENT
  1590. * Use GiteaServer as the user agent for http requests (#3404)
  1591. * Delete indexer DB entries when (re)creating index (#3385)
  1592. * Change how merged PR commit info are prepared (#3368)
  1593. * Asynchronously populate the repo indexer (#3366)
  1594. * Make the default action for the gitea executable that of running the webserver (#3331)
  1595. * Templates for extra links in top navbar and repo tool tabs. (#3308)
  1596. * Fixed asterisk based tasklist items #3295 (#3296)
  1597. * Add more additional template snippets (#3286)
  1598. * Open external tracker in blank window, consistently with wiki (#3227)
  1599. * Fix repo links on user profile (#3197)
  1600. * Enable emoji for wiki view (#3158)
  1601. * Small improve on deleting attachements (#3145)
  1602. * Reduce overhead of upgrades for users with custom stylesheets/JS (#3051)
  1603. * Default log level to Info without hardcoding it in installer (#3041)
  1604. * Memory usage improvements (#3013)
  1605. * Add fingerprint to ssh key endpoints. (#3009)
  1606. * Improve memory usage when reaching diff limits (#2990)
  1607. * Expandable commit bodies (#2980)
  1608. * Update gitgraph.js to fix blurry commit graph on HiDPI screens (#2957)
  1609. * Fix language names (#2955)
  1610. * Remove render issue link (#2954)
  1611. * Page parameter for repo search API (#2915)
  1612. * Apply LANDING\_PAGE config options for logged in users (#2894)
  1613. * Enable admin to search by email (#2888)
  1614. * Hide add key button if SSH is disabled (#2873)
  1615. * Fix comment API paths (#2813)
  1616. * Add an option to allow redirect of http port 80 to https. (#1928)
  1617. * MISC
  1618. * Fix organization profile on mobile devices (#3332)
  1619. * Fix guide link for webhooks in repository settings (#3291) (#3292)
  1620. * Enable Libravatar by default in new installations (#3287)
  1621. * Improve suppressed diff boxes (#3193)
  1622. * fix button heights on commits page (#3091)
  1623. * Minor copy changes (#3074)
  1624. * Sort repos in issues dashboard sidebar (#3072)
  1625. * Remove box-shadow from UI, fix dashboard issue (#3065)
  1626. * Adjust branch button size (#3063)
  1627. * Fix misalignment issue in repo header (#3062)
  1628. * Delete a user's public key via admin api (closes #3014) (#3059)
  1629. * Dashboard: Fix line height problem in issue titles (#3054)
  1630. * Remove duplicate "Max Diff Lines" from config view (#2987)
  1631. * Drop unmaintained gogs migration script (#2947)
  1632. * App restarts to quickly if it fails to start. (#2945)
  1633. * Add owner to delete repo message (#2886)
  1634. ## [1.3.1](https://github.com/go-gitea/gitea/releases/tag/v1.3.1) - 2017-12-08
  1635. * BUGFIXES
  1636. * Sanitize logs for mirror sync (#3057, #3082) (#3078)
  1637. * Fix missing branch in release bug (#3108) (#3117)
  1638. * Fix repo indexer and submodule bug (#3107) (#3110)
  1639. * Fix legacy URL redirects (#3100) (#3106)
  1640. * Fix redis session failed (#3086) (#3089)
  1641. * Fix issue list branch link broken (#3061) (#3070)
  1642. * Fix missing password length check when change password (#3039) (#3071)
  1643. ## [1.3.0](https://github.com/go-gitea/gitea/releases/tag/v1.3.0) - 2017-11-29
  1644. * BREAKING
  1645. * Make URL scheme unambiguous (#2408)
  1646. * FEATURE
  1647. * Add branch overiew page (#2108)
  1648. * Code/repo search (#2582)
  1649. * Add Activity page to repository (#2674)
  1650. * Issue Timetracking (#2211)
  1651. * Add orgmode document type on file view and readme (#2525)
  1652. * Add external markup render support (#2570)
  1653. * Implementation of discord webhook (#2402)
  1654. * Webhooks for repo creation/deletion (#1663)
  1655. * Complete push webhooks (#2530)
  1656. * Add possibility to record branch information in an issue (#780)
  1657. * Create new branch from branch selection dropdown (#2130)
  1658. * Implementation of all repositories of a user from user->settings (#1740)
  1659. * Add LFS object verification step after upload (#2868)
  1660. * Configurable SSH cipher suite (#913)
  1661. * Disable custom Git Hooks globally via configuration file (#2450)
  1662. * Sync releases table with tags on push and for mirrors (#2459)
  1663. * BUGFIXES
  1664. * Fix label comments for French locale (#3017)
  1665. * Remove duplicate "Max Diff Lines" from config view (#3001)
  1666. * Fix over-escaped characters (#2992)
  1667. * Fix go-get, src and raw urls to new scheme (#2986)
  1668. * Fix error when add user has full name to team (#2975)
  1669. * Fix files/commits of merged PRs (#2970)
  1670. * Update golang x/crypto dependencies - Fix SSH transport fail (#2951)
  1671. * Fix memcache support when value is returned as string always (#2950)
  1672. * Fix issue link rendering in commit messages (#2897)
  1673. * Fix adding a new authentication source after selecting OAuth (#2889)
  1674. * Fix new branch creation to new url scheme (#2884)
  1675. * Allow spaces in username for LDAP users (#2880)
  1676. * Fix LFS not returning correct content length when requesting a range … (#2864)
  1677. * Fix fork repository cycle to self (#2860)
  1678. * Fix click create pull request button 404 (#2859)
  1679. * Fix API raw file content access for default branch (#2849)
  1680. * Clean repository ROOT directory name with filepath.Clean (#2846)
  1681. * Fix API raw requests for commits and tags (#2841)
  1682. * Fix order of comments (#2835)
  1683. * Issue content should not be updated when closing with comment (#2833)
  1684. * Fix ordering in app.ini and fix run mode option (#2829)
  1685. * Fix redirect url of legacy commits route (#2825)
  1686. * Fix commits page url (#2823)
  1687. * Fix wrong translations (#2818)
  1688. * Fix dropdown menu position when explore repos (#2808)
  1689. * Fix Git LFS object/repo link storage in database and small refactoring (#2803)
  1690. * Use relative URLs for avatars on the dashboard (#2800)
  1691. * Add checks for commits with missing author and time (#2771)
  1692. * Fix emojify image URL (#2769)
  1693. * Hide unactive on explore users and some refactors (#2741)
  1694. * Fix IE unsupported javascript construction in branch dropdown (#2736)
  1695. * Only update mirror last update after successful sync (#2730)
  1696. * Fix semantic-ui style conflict with v-cloak (#2722)
  1697. * Fixing wrong translation on sort type oldest/latest (#2720)
  1698. * Fix PR, milestone and label functionality if issue unit is disabled (#2710)
  1699. * Fix plain readme didn't render correctly on repo home page (#2705)
  1700. * Fix organization removal from watch table migration (#2703)
  1701. * Fix repository search function (#2689)
  1702. * fix panic on gogs webhook creation (#2675)
  1703. * Fix orgnization user watch repository (#2670)
  1704. * GPG key email verification no longer case sensitive (#2661) (#2663)
  1705. * Fix index column deletion (#2651)
  1706. * table `pull_request` wasn't updated correctly (#2649)
  1707. * Fix go get response if only app URL is custom in configuration (#2634)
  1708. * Fix doubled issue tab introduced in migration v16 (#2611)
  1709. * Rewrite migrations to not depend on future code changes (#2604)
  1710. * Fix implementation of repo Home func (#2601)
  1711. * Fix translation upload to crowdin (#2599)
  1712. * Reduce usage of allcols on update (#2596)
  1713. * fix go get subpackage bug (#2584)
  1714. * Fix broken migration to add can_push field back to table (#2574)
  1715. * fix readme view bug (#2566)
  1716. * Fix sending mail with a non-latin display name. #2102 (#2559)
  1717. * Restricting access to fork functioanlity to users with Code access (#2534)
  1718. * fix updated update on public key (#2514)
  1719. * Added bucket name to s3 drone plugin (#2505)
  1720. * fixes 500 error on dashboard when using MSSQL (#2504)
  1721. * fix wrong rendering of commit detail page (#2503)
  1722. * Hotfix: Add time manually adds time in nanoseconds (#2499)
  1723. * Remove repository mirrors from "collaborative" list (#2497)
  1724. * fix release failed since the wrong token name (#2496)
  1725. * Fix slice out of bounds error in mailer (#2479)
  1726. * Fix #2470 (#2477)
  1727. * fix orgnization webhooks (#2422)
  1728. * fix webhook test (#2415)
  1729. * fix missing orgnization discord webhook (#2414)
  1730. * Fix route handler order (#2409)
  1731. * Prevent sending emails and notifications to inactive users (#2384)
  1732. * Move themes to plugin directory. Fixes #2372 (#2375)
  1733. * fix duplicated feed (#2370)
  1734. * Fix missing collabrative repos (#2367)
  1735. * Only check at least one email gpg key (#2266)
  1736. * don't check minimum key size when disabled (#1754)
  1737. * Fix run command race (#1470)
  1738. * fix .netrc authentication (#2700)
  1739. * Fix so that user can still fork his own repository to his organizations (#2699)
  1740. * Fix can_push value to false in protected_branch (#2560)
  1741. * Fix copy in email templates (#2801)
  1742. * Fix inconsistencies in user settings UI (#2901)
  1743. * Fix attachments icon size on zoom in/out (#2853)
  1744. * Fix ignored errors in API route (#2850)
  1745. * Fix activity css conflit with semantic ui (#2758)
  1746. * Fix notifications tabs according to semantic-ui docs (#2733)
  1747. * Fix typos in app.ini (#2732)
  1748. * Fix duplicated rel attribute (#2549)
  1749. * Fix tests code to prevent some runtime errors (#2381)
  1750. * ENHANCEMENT
  1751. * Memory usage improvements and lower minimal git requirement to 1.7.2 (#3013) (#3028)
  1752. * Set OpenID support on by default when installing new instance (#3010) (#3027)
  1753. * Use api.TrackedTime in API (#2807)
  1754. * Configurable SSH key exchange algorithm and MAC suite (#2806)
  1755. * Add Safari pinned tab icon (#2799)
  1756. * Improve force push detect when push (#2798)
  1757. * Add wrapping to long diff lines (#2789)
  1758. * Link members and repositories count to each page on org home. (#2787)
  1759. * Show Sendmail settings on admin config page (#2782)
  1760. * Add commit count caching (#2774)
  1761. * Use identicon image for default gravatar. (#2767)
  1762. * Add default ssh ciphers (#2761)
  1763. * Remove manual of unsupported option (#2757)
  1764. * Add search mode option to /api/repo/search (#2756)
  1765. * Move swagger-ui under /api/v1 (#2746)
  1766. * Add support for extra sendmail arguments (#2731)
  1767. * Use buffersize to reduce database connection when iterate (#2724)
  1768. * Render plain text README.txt monospaced (#2721)
  1769. * Integration test for activity page (#2704)
  1770. * Merge password and 2fa page on user settings (#2695)
  1771. * Allow custom SSH user in UI for built-in SSH server (#2617) (#2678)
  1772. * Refactor duplicated code in repo handlers (#2657)
  1773. * Replace deprecated Id method with ID (#2655)
  1774. * Remove redudant functions and code (#2652)
  1775. * hide navbar when only 1 sign-in method is available (#2444) (#2648)
  1776. * Change default sort order (#2647)
  1777. * Change pull description text (#2075) (#2646)
  1778. * Remove direct user adding to organization members (#2641)
  1779. * Use session when creating user (#2638)
  1780. * Use Semantic UI's Search component for user and repo search (#2636)
  1781. * Use AfterLoad instead of AfterSet on Structs (#2628)
  1782. * Remove redudant CheckUnit calls in router (#2627)
  1783. * Remove repo unit index (#2621)
  1784. * Remove redudant issue LoadAttributes() calls (#2614)
  1785. * Make indexer code more reusable (#2590)
  1786. * Use custom type and constants to hold available order by options (#2572)
  1787. * Use named ActionType constants in template helper (#2545)
  1788. * Make basic functionality work without JavaScript (#2541)
  1789. * Ctrl + Enter to submit forms (#2540)
  1790. * Automatically regenerate indexer for incompatible versions (#2524)
  1791. * Set default lfs content path to data/lfs (#2521)
  1792. * Convert spaces to tabs in footer.tmpl (#2520)
  1793. * Sort repository tree entries in natural way (#2506)
  1794. * Open external wiki in new window (#2489)
  1795. * Use created & updated instead BeforeInsert & BeforeUpdate (#2482)
  1796. * Hide branch on pull request view or create UI (#2454)
  1797. * improve protected branch to add whitelist support (#2451)
  1798. * some refactors for issue and comments (#2419)
  1799. * Restructure markup & markdown to prepare for multiple markup language… (#2411)
  1800. * Improve issue search (#2387)
  1801. * Add UseCompatSSHURI setting (#2356)
  1802. * Use custom search for each filter type in dashboard (#2343)
  1803. * Failed authentication are now properly logged (#2334)
  1804. * Add environment variable support for Docker image (#2201)
  1805. * Set session and indexers' data files rel to AppDataPath (#2192)
  1806. * Display commit status on landing page of repo (#1784)
  1807. * TESTING
  1808. * Add integration test for logging out (#2892)
  1809. * Integration test for user deleting account (#2891)
  1810. * Use different directories for session files in integration tests (#2834)
  1811. * Add deleted_branch table fixture (#2832)
  1812. * Include HTTP method in test error message (#2815)
  1813. * Add repository search unit and integration tests (#2575)
  1814. * Expand fixtures (#2571)
  1815. * Fix /api/repo/search integration tests (#2550)
  1816. * Make integration tests more user-friendly (#2536)
  1817. * Fix unit test race condition (#2516)
  1818. * Add missing fixture to clean gpg_key table (#2494)
  1819. * Hotfix for integration testing (#2473)
  1820. * Make repo private to not interfere with other tests (#2467)
  1821. * Error message for integration test (#2410)
  1822. * Fix "index out of range" runtime error in repo_list tests (#2376)
  1823. * Add git clone test on integration test (#1682)
  1824. * TRANSLATION
  1825. * Fix localization texts that contain semicolon (#2900)
  1826. * Fix activity locale (#2709)
  1827. * Update translation from crowdin (#2368)
  1828. * BUILD
  1829. * change the email and name to GitBot account. (#2848)
  1830. * Fix removing backslash before quotes in translations (#2831)
  1831. * add gitea remote in drone. (#2817)
  1832. * add remote name for git push. (#2816)
  1833. * Launch Gitea with custom UID/GID for 'git' user (fixes #2286) (#2791)
  1834. * Download and pushing translations (#2727)
  1835. * Automatic update of translations (#2585)
  1836. * Add pre-build step for nodejs stuff (#2581)
  1837. * Compress css with nodejs (#2580)
  1838. * Remove go version check for make fmt (#2558)
  1839. * Fix lint errors (#2547)
  1840. * Always run fmt check in CI (#2546)
  1841. * Fix fmt errors (#2544)
  1842. * add codecov.io service. (#2493)
  1843. * Fix some tests : make coverage -> test (#2492)
  1844. * Fix fmt error in mailer (#2490)
  1845. * Allow changing integration test database connection using env variables (#2484)
  1846. * Add changelog config file for generate changelog (#2461)
  1847. * Changes for latest DroneCI (#2362)
  1848. * Use standard lessc and minify CSS using Node.js (#2337)
  1849. * DOCS
  1850. * Update screenshots on README (#2910)
  1851. * Gogs -> Gitea (#2909)
  1852. * Update swagger documentation (#2899)
  1853. * Fix typo (#2810)
  1854. * Fix Polish language name spelling (#2766)
  1855. * Fix Various Grammar Issues and Adjust Unnatural Wording (#2737)
  1856. * Add maintainer label for docker file (#2658)
  1857. * Link to gitea-specific Vagrant example (#2624)
  1858. * add release notes of v1.1.4 (#2463)
  1859. * Wrap most paragraphs to 80 columns (#2396)
  1860. * Update CONTRIBUTING following #2329 discussion (#2394)
  1861. * Update hard-coded version to 1.3.0+dev (#2390)
  1862. * Clarify Translation Process. Also fix branch names (#2378)
  1863. * Admin grammar fixes and improvements (#2056)
  1864. * MISC
  1865. * Sync MaxGitDiffLineCharacters with conf/app.ini (#2779)
  1866. * Dockerfile: Updated alpine image to 3.6. (#2486)
  1867. * Basic VSCode configuration for building and debugging (#2483)
  1868. * Added vendor dir for js/css libs; Documented sources (#1484) (#2241)
  1869. ## [1.2.3](https://github.com/go-gitea/gitea/releases/tag/v1.2.3) - 2017-11-03
  1870. * BUGFIXES
  1871. * Only require one email when validating GPG key (#2266, #2467, #2663) (#2788)
  1872. * Fix order of comments (#2835) (#2839)
  1873. ## [1.2.2](https://github.com/go-gitea/gitea/releases/tag/v1.2.2) - 2017-10-26
  1874. * BUGFIXES
  1875. * Add checks for commits with missing author and time (#2771) (#2785)
  1876. * Fix sending mail with a non-latin display name (#2559) (#2783)
  1877. * Sync MaxGitDiffLineCharacters with conf/app.ini (#2779) (#2780)
  1878. * Update vendor git (#2765) (#2772)
  1879. * Fix emojify image URL (#2769) (#2773)
  1880. ## [1.2.1](https://github.com/go-gitea/gitea/releases/tag/v1.2.1) - 2017-10-16
  1881. * BUGFIXES
  1882. * Fix PR, milestone and label functionality if issue unit is disabled (#2710) (#2714)
  1883. * Fix plain readme didn't render correctly on repo home page (#2705) (#2712)
  1884. * Fix so that user can still fork his own repository to his organizations (#2699) (#2707)
  1885. * Fix .netrc authentication (#2700) (#2708)
  1886. * Fix slice out of bounds error in mailer (#2479) (#2696)
  1887. ## [1.2.0](https://github.com/go-gitea/gitea/releases/tag/v1.2.0) - 2017-10-10
  1888. * SECURITY
  1889. * Sanitation fix from Gogs (#1461)
  1890. * BREAKING
  1891. * Rename /forget_password url to /forgot_password (#1219)
  1892. * FEATURE
  1893. * Logo: Add task to generate images from SVG and change to new logo (#2194)
  1894. * Status-API (#1332)
  1895. * Show commit status icon in commits table (#1688)
  1896. * Additional OAuth2 providers (#1010)
  1897. * GPG commit validation (#1150)
  1898. * Rework SSH key management UI to add GPG (#1293)
  1899. * Implement GPG api (#710)
  1900. * Login via OpenID-2.0 (#618)
  1901. * Add units to team (#947)
  1902. * Batch updates for issues (#926)
  1903. * Add Gitea Webhook (#1755)
  1904. * API: support '/orgs/:org/repos' (#2047)
  1905. * Display all organization from user settings (#1739)
  1906. * LDAP user synchronization (#1478)
  1907. * Adding #issuecomment to the URL in E-Mail notifications (#1674)
  1908. * Add download count field and unit testing for attachment. (#1512)
  1909. * Add repo mirror sync API endpoint (#1508)
  1910. * Add markup package to prepare for org markup format (#1493)
  1911. * Support for custom html meta (#1423)
  1912. * Per issue/PR watch/unwatch (#1410)
  1913. * Allow ENABLE_OPENID_SIGNUP to depend on DISABLE_REGISTRATION (#1369)
  1914. * Repo size in admin panel (#1482)
  1915. * Show user OpenID URIs in their profile (#1314)
  1916. * Add change-password admin command (#1304)
  1917. * Only use issue and wiki on repo. (#1297)
  1918. * Allow push to init a wiki repo (#1279)
  1919. * ENHANCEMENT
  1920. * Make time diff translatable (#2057)
  1921. * Smaller watch, star, and fork buttons (#2052)
  1922. * Display config file path on admin panel (#2030)
  1923. * Only show SSH clone URL if signed in (#2169) (#2170)
  1924. * Only show "No Description" to repo admins (#2167)
  1925. * Always return valid go-get meta, even if unauthorized (#2010)
  1926. * Enable assignee e-mail notification (#2003)
  1927. * Let not-logged-in users view releases (#1999)
  1928. * No highlighting for .txt files (#1922)
  1929. * Make side nav on dashboard stackable (#1778)
  1930. * Setting to disable authorized_keys backup (#1856)
  1931. * Hide the create organization button (in dashboard/organization section) (#1705)
  1932. * LFS: Return 404 for unimplemented endpoints (#1330)
  1933. * Show a link to password reset from user settings requiring a password (#862)
  1934. * Reserve the "explore" user/org name (#1222)
  1935. * Send notifications to partecipants in issue comments (#1217)
  1936. * Improve style of user OpenID setting page (#1324)
  1937. * Use font-awesome OpenID icon more (#1320)
  1938. * Use readonly input form to show the validated OpenID URI (#1308)
  1939. * Add captcha support to OpenID based signup (#1307)
  1940. * Minor improvements on commit graph UI (#1380)
  1941. * Mirror sync interval specified as duration string (#1407)
  1942. * Make issue in commit graph "clickable" (#1392)
  1943. * Use whole button (commit graph) as link (#1390)
  1944. * Autofocus on 2fa passcode fields (#1460)
  1945. * Sort on repo size in admin panel (#1654)
  1946. * Improve dashboard repo search (#1652)
  1947. * Use a better default MAX_GIT_DIFF_LINE_CHARACTERS (#1845)
  1948. * Adds Parent property to the repo API (#1687)
  1949. * Add configuration option for default permission to create Organizations (#1686)
  1950. * Remove sha1 hash display in repository table (#1678)
  1951. * Download files to their original filename (#1676)
  1952. * Exposes in API the Repo entity's Size and IsBare property (#1668)
  1953. * Change two factor code entry box from text to number (#1733)
  1954. * Directly show error if user hit repository limit (#1767)
  1955. * Generate small and large logos at 4x resolution (#2233)
  1956. * Tags listed in releases tab (#2389) (#2424)
  1957. * BUGFIXES
  1958. * Fix adding branch as protected to not allow pushing to it (#2556)
  1959. * Orgs: fix org page title when full name is not defined (#1495)
  1960. * Fix double borders on edit page (#1152) (#1153)
  1961. * Search bar fixes for #1187 and #1205 (#1207)
  1962. * Fix upgrade failed after ever rollback (#1194)
  1963. * Fix FCGI (over TCP) support (#1368)
  1964. * Backport of migration fixes (#2604) (#2677)
  1965. * fix panic on gogs webhook creation (#2675) (#2676)
  1966. * Backport: Fixes 500 error on dashboard when using MSSQL (#2504) (#2662)
  1967. * Fix go get response if only app URL is custom in configuration (#2634) (#2640)
  1968. * Fix deletion of unprotected branches (#2630)
  1969. * Backport of 2611 / Fix doubled issue tab introduced in migration v16 (#2622)
  1970. * v38 migration used an outdated version of RepoUnit model (#2602)
  1971. * fix go get subpackage bug (#2584) (#2589)
  1972. * Backport: Sync releases table with tags on push and for mirrors (#2459) (#2554)
  1973. * Backport: Restricting access to fork functioanlity to users with Code access (#2542)
  1974. * Fix migration from pre-v15 to 1.2.0 (#2460) (#2465)
  1975. * Fix migration from pre-v15 to 1.2.0 (#2460)
  1976. * fix duplicated feed (#2370) (#2413)
  1977. * Fix releases to be counted from database not tags (#2389)
  1978. * Fix missing collabrative repos (#2367) (#2382)
  1979. * Add more test for login links and fix a bug on action retrieve (#2361)
  1980. * Fix SQL condition bug in GetFeeds(..) (#2360)
  1981. * fix bug on create repo link on dashboard (#2359)
  1982. * Fix order of elements in dashboard html (#2344)
  1983. * Fix repo-search template errors for go1.7 (#2336)
  1984. * Add missing forks key for dashboard repository component (#2325)
  1985. * fix template error on explore repos (#2319)
  1986. * Trigger sync webhooks on UI commit (#2302)
  1987. * fix 500 error when view an issue which's milestone deleted (#2297)
  1988. * Only update needed columns when update user (#2296)
  1989. * Fix rendering of external links (#2292)
  1990. * Fix and improve dashboard repo UI (#2285)
  1991. * Make short link pattern greedy (#2259)
  1992. * Temporarily patch go-ini/ini with fork (#2255)
  1993. * Convert xorm literal queries to method calls (#2253)
  1994. * update code.gitea.io/git in vendor to fix delete branch fails (#2250)
  1995. * Replace calls to xorm UseBool with Where (#2237)
  1996. * rhel7 has a git version with four digits (1.8.3.1) (#2236)
  1997. * Fix internal requests when gitea listens to unix socket or only external IP (#2234)
  1998. * Check for access in /repositories/:id (#2227)
  1999. * Fixed robots.txt 404 error (#2226)
  2000. * Fix counts on issues dashboard (#2215)
  2001. * Fix unclosed session bug (#2214)
  2002. * Add collaborative repositories to the dashboard (#2205)
  2003. * Fix issue updated_unix bug (#2204)
  2004. * Fix Commits nil pointer dereference (#2203)
  2005. * Fix bare-repo bugs (#2199)
  2006. * Fix PR nil-dereference bug (#2195)
  2007. * Allow only single fork per user/organization (#2193)
  2008. * Fix key usage time update if the key is used in parallel for multiple operations (#2185)
  2009. * Only allow token authentication with 2FA enabled (#2184)
  2010. * Fix profile update for non-local users (#2178)
  2011. * Fix compiling without sqlite and gcc (#2177)
  2012. * Make compare button URL aware if current repo is a fork (#2162) (#2163)
  2013. * Remove unit types commits and settings (#2161)
  2014. * Fix OpenID registration route (#2160)
  2015. * Fix repository settings collobration list display (#2151)
  2016. * Ignore invalid issue numbers in commit messages. Fixes #2022 (#2150)
  2017. * Fix SHA1 hash linking (#2143)
  2018. * Fix repo API bug (#2133)
  2019. * Use POSIX complaint ! operator in find (#2132)
  2020. * Fix GET /users/:username/repos endpoint (#2125)
  2021. * Fix username rendering bug (#2122)
  2022. * Fix wiki preview links (#2119)
  2023. * vendor: update sqlite to fix "database is locked" errors (#2116)
  2024. * Fix unchecked error bug (#2110)
  2025. * Fix missing-return bug (#2109)
  2026. * Fix API for branches with slashes (#2096)
  2027. * Fix git hooks update to receive required arguments (#2095)
  2028. * upgrade git source code. (#2094)
  2029. * Fix SQL bug in models.PullRequests (#2092)
  2030. * Don't ignore gravatar error (#2083)
  2031. * Fix release display and correct paging (#2080)
  2032. * remove unnecessary blank lines and wrong error log (#2079)
  2033. * Check for valid renamed usernames (#2077)
  2034. * Update git module (#2074)
  2035. * Fix org hooks UI (#2072)
  2036. * Fix #1271: Call location.reload after XHR finishes (#2071)
  2037. * Fix default ghost assignee bug (#2069)
  2038. * Fix bug in issue labels API (#2048)
  2039. * Load label ID in NewLabels (#2045)
  2040. * Fix: `http: multiple response.WriteHeader calls` (#2038)
  2041. * Pagination on releases page (#2035)
  2042. * repo/editor: fix breadcrumb path cuts parent dirs (#3859) (#2032)
  2043. * Fix displaying commits and files of PR created from now deleted fork (#2023)
  2044. * Fix #2001 and fix issue comments hidden (#2016)
  2045. * Update code.gitea.io/git (#2014)
  2046. * Keep sort when switching page (#2013)
  2047. * Important: wrong PR merge commit ID saved (#2007)
  2048. * Don't show non-comments in comments API (#2001)
  2049. * Fix "Dashboard shows deleted comments" (#1995)
  2050. * Make branch deletion URL more like GitHub's, fixes #1397 (#1994)
  2051. * Fix fast-forward PR bug (#1989)
  2052. * Fix GPG email checking to be case insensitive (#1988)
  2053. * fix bug for normal user visit public repo (#1984)
  2054. * fix collborators lack of units on orgnization repositories (#1968)
  2055. * Fix diff of renamed and modified file (#1967)
  2056. * Fix uppercase default branch bug (#1965)
  2057. * Fix bug in Action.loadRepo() (#1959)
  2058. * Fix deleted milestone bug (#1942)
  2059. * Fix engine bug in getIssueByID (#1934)
  2060. * Switch to keybase go-crypto (for some elliptic curve key) + test (#1925)
  2061. * Fix setting.AppPath for integration tests (#1923)
  2062. * Fix search by issue type (#1914)
  2063. * Fix ghost user bug (#1913)
  2064. * Require token before checking membership/ownership (#1905)
  2065. * Bug fixes for org member API (#1904)
  2066. * A missing / to provide a correct endpoint (#1903)
  2067. * Fix 500 in public activity page (#1901)
  2068. * Center-aligned login topbar (#1880)
  2069. * Migration to fix existing owner team units (#1873)
  2070. * Fix paginater length (#1866)
  2071. * Fix bug in removeOrgRepo (#1858)
  2072. * Display draft releases (#1854)
  2073. * Fix 404 for external tracking issues (#1852)
  2074. * Update code.gitea.io/git (#1849)
  2075. * Fix user profile activity feed (#1848)
  2076. * Don't ignore error in getMergeCommit (#1843)
  2077. * Fix locking bug in removeOrgRepo (#1842)
  2078. * Fix status table race condition (#1835)
  2079. * Fix PR template error (#1834)
  2080. * Fix pull request compare link (#1832)
  2081. * Use ghost users in issues/PRs (#1831)
  2082. * Commitless repos should be bare (#1829)
  2083. * Update code.gitea.io/git (#1824)
  2084. * Fix invalid reference in feeds template (#1820)
  2085. * fix bug to deny to add orgnization as a member of an orgnization or team (#1815)
  2086. * xxx_active_code_live setting in printed in hours and minutes instead … (#1814)
  2087. * Fix deadlock in updateRepository (#1813)
  2088. * Give all units to owner team (#1812)
  2089. * Fix 500 for GET /teams/:id endpoints (#1811)
  2090. * fix bug not to trim space of login username (#1796)
  2091. * Fix renaming bug (#1786)
  2092. * Fix activity feed (#1779)
  2093. * Make navbar scroll on overflow (#1777)
  2094. * Delete repo redirects on repo deletion (#1776)
  2095. * Fix unloaded owner bug (#1770)
  2096. * Admin should always be allowed to create repositories even if hit limit (#1765)
  2097. * Update HighlightJS and fix YAML files highlighting (#1764)
  2098. * fix: #1757 fix set MAX_CREATION_LIMIT as zero. (#1762)
  2099. * fix admin lost permission caused by #947 (#1753)
  2100. * More fixes for dashboard search (#1750)
  2101. * fixes wrong after field in webhook payload (#1746)
  2102. * fix avatar update bug (#1729)
  2103. * Fix FOUC on Firefox (#1728)
  2104. * Fix changes introduce by update of go-swagger. (#1727)
  2105. * Fix #1719 (#1722)
  2106. * Correct flash after sending password reset email (#1718)
  2107. * Fix and test for delete user (#1713)
  2108. * Fix rendering of issue checkboxes (#1709)
  2109. * Enforce netgo build tag while cross-compilation (#1690)
  2110. * fix bug when push a branch name with / & fix an integration test bug (#1689)
  2111. * fix potential sqlite lock (#1680)
  2112. * Fix commit sha1 URL rendering in markdown (#1677)
  2113. * Fix static files permission under public/ (#1675)
  2114. * fix: tag contain character ) will http 500 on release page (#1670)
  2115. * Fix CSS for code in wiki markdown (#1660)
  2116. * fix multiple readme file rendering and fix #1657 (#1658)
  2117. * Add primary key and index to external login user table (#1656)
  2118. * fix #1643 and improve integration test (#1645)
  2119. * Fix version in Makefile (#1636)
  2120. * Handle display of GPG key without end date (#1628)
  2121. * fix bug on issue view when not login (#1624)
  2122. * bug fixed for API to get user's repos (#1622)
  2123. * fix lost text color on button on set as primary email (#1621)
  2124. * Add create_at and updated_at in PR json (#1616)
  2125. * update git and fix #1133 (#1614)
  2126. * fix bug on status API (#1533)
  2127. * Do not show empty collaborators segment (#1531)
  2128. * Fix markdown rendering (#1530)
  2129. * fix go get sub package and add domain on installation to let go get work defaultly (#1518)
  2130. * fix #1501 ssh hangs caused by #1461 (#1513)
  2131. * Fix empty file download (#1506)
  2132. * Fix broken v27 migration - change mirror interval from int to bigint (#1504)
  2133. * Do not allow commiting to protected branch from online editor (#1502)
  2134. * Add internal routes for ssh hook comands (#1471)
  2135. * Fix races within code.gitea.io/git.(*Command).RunInDirTimeoutPipeline (#1465)
  2136. * Simple quick fix for #1418 (#1456)
  2137. * fix gpg API panic when no verification (#1451)
  2138. * fix migrate failed and org dashboard failed on MSSQL database (#1448)
  2139. * Optimize and fix autolink function (#1442) (#1444)
  2140. * Fix and simplify repo branches (settings) UI (#1435)
  2141. * Fix disabled fields in repo settings UI (#1431)
  2142. * fixes pull request hanging when it contains normal and LFS files (#1425)
  2143. * Fix races in the log module by using syncmap (#1421)
  2144. * Add length check for the return string (#1420)
  2145. * Fix "Error: No issue number specified" when pushing (#1393)
  2146. * Corrected Mirror.NextUpdate not set (#1388)
  2147. * fix: remove `str2html` from org full name (#1360)
  2148. * Correct broken unaligned load/store in armv5 (#1355)
  2149. * Remove href on first/last link when on first/last page (#1345)
  2150. * Fix broken table layout (#1344)
  2151. * LFS: Fix SSH authentication for trailing arguments (#1328)
  2152. * Remove empty file (#1326)
  2153. * Fix delete user failed on sqlite (#1321)
  2154. * Fix inconsistency in layout (#1316)
  2155. * Fix gpg wrong column types (#1303)
  2156. * Fix wiki bugs (#1294)
  2157. * Fix missing less sources for oauth (#1288)
  2158. * Make sure both scripts/ can live side by side (#1264)
  2159. * Fix nil-dereference bug (#1258)
  2160. * rewrite pre-commit, post-commit and options hooks (fixes #1250) (#1257)
  2161. * Commit search appearence fixes (#1254)
  2162. * Fix forget migration for wiki hooks (#1227)
  2163. * Fix repo settings external tracker failed and check external urls (#1215)
  2164. * Fix 500 caused by branches settings introduced by #1198 (#1214)
  2165. * fix #1189, commit messages containing a pipe (#1203)
  2166. * Bug fixed for delete repo failed (#1193)
  2167. * Fix migration failed when authorized_keys is not exist (#1180)
  2168. * Fix ini format incomiptable with crowdin (#1177)
  2169. * TESTING
  2170. * Integration tests for issues API (#2059)
  2171. * Add integration tests for signin (#2363)
  2172. * Add INTERNAL_TOKEN to integration .ini file (#2346)
  2173. * Add public links check (#2323)
  2174. * Fix hooks for integration repo (#2216)
  2175. * More integration tests for comment API (#2156)
  2176. * Cache session cookies in tests (#2128)
  2177. * Less verbose integration tests (#2123)
  2178. * Fix improper setup for integration tests (#2050)
  2179. * Improve integration test helper functions (#2049)
  2180. * Add integration test for issue creating (#2002)
  2181. * Use testing/benchmark interface (#1993)
  2182. * Add integration test for repository migration (#1983)
  2183. * Consolidate boilerplate in integration tests (#1979)
  2184. * Set console to debug for integration tests (#1976)
  2185. * Add pull-create integration test (#1972)
  2186. * Coverage reports for integration tests (#1960)
  2187. * Add integration test for pull-request merge (#1912)
  2188. * Add integration test for file editing (#1907)
  2189. * Add integration test for repository forking (#1896)
  2190. * Run unused test (#1875)
  2191. * Don't recreate database in integration tests (#1697)
  2192. * remove sqlite tag when integration test with mysql/postgres and recreate database when init integration test (#1693)
  2193. * MySQL, Postgres integration tests in drone (#1638)
  2194. * improve integration test to resue models/fixtures and store git repos with tests (#1627)
  2195. * Improve govendor testing (#1623)
  2196. * Integration test framework (#1290)
  2197. * Unit tests for issue_list (#1209)
  2198. * Add integration test for signup (#1135)
  2199. * TRANSLATION
  2200. * update translation from crowdin (#2368) (#2380)
  2201. * Small fixes (#2144)
  2202. * Missing signed commit display translations (#2134)
  2203. * Sync latest translations from crowdin (#2104)
  2204. * Add make command update-translations for update translations from crodwin (#2097)
  2205. * Fix some mistakes (#1833)
  2206. * Improve clarity between is_activated and prohibit_login (#1788)
  2207. * Improve grammar (#1775)
  2208. * Fix bad grammar and wordiness (#1741)
  2209. * Make strings translatable (#1188) (#1198)
  2210. * BUILD
  2211. * Dockerfile for aarch64 (#1128) (#1130)
  2212. * backport from v1.2 branch: add secrets for github release (#2588) (#2598)
  2213. * Add secrets for github release to fix drone failed (#2588)
  2214. * Backport changes for latest drone (#2586)
  2215. * Removing .drone.yml.sig (#2579)
  2216. * Fix drone for tags (#2573) (#2576)
  2217. * Backport: Remove go version check for make fmt (#2558) (#2561)
  2218. * Backport: Fix lint, fmt and integration testing errors (#2553)
  2219. * update latest xorm version to vendor (#2353)
  2220. * Remove integration test executables on `make clean` (#2340)
  2221. * refactor(Makefile): allow overriding default go program (#2310)
  2222. * Revert to upstream ini dependency (#2304)
  2223. * Use /dev/urandom to create random password (#2298)
  2224. * update drone sig file. (#2262)
  2225. * go get github.com/wadey/gocovmerge when needed (#2235)
  2226. * fix typo (#2145)
  2227. * Revert "Reduce number of layer" (#2086)
  2228. * Reduce number of layer (#2078)
  2229. * Skip sqlite integration in CI (#2058)
  2230. * fix golint error and rename func for suggestion. (#1997)
  2231. * fix misspell (#1996)
  2232. * update drone sig file (#1981)
  2233. * send notification if status changed (#1973)
  2234. * switch gitter to discord for drone. (#1971)
  2235. * Fix missing backslash in Dockerfile.rpi (#1952)
  2236. * Don't run 'make release' on PRs (#1908)
  2237. * Update code.gitea.io/git (#1892)
  2238. * Use production version of vuejs (#1869)
  2239. * Add a variable for docker tag (#1825)
  2240. * resign drone and fix #1816 (#1819)
  2241. * Separate generate swagger + fix sed os specific (#1791)
  2242. * Only run coverage on merges/pushes to master (#1783)
  2243. * Remove stale rule from Makefile (#1782)
  2244. * feat: upgrade drone docker image to support multi-stage build. (#1732)
  2245. * Realy don't cache apk index (#1694)
  2246. * Limit clone depth when drone-building (#1644)
  2247. * Refactor Dockerfile (#1632)
  2248. * Check if missing/modified/unused deps in vendor and fix errors (#1468)
  2249. * Add GOFLAGS and EXTRA_GOFLAGS (#1438)
  2250. * Include formatting check to the `make test` (and thus also `check`) rule (#1366)
  2251. * DOCS
  2252. * fix wrong changelog title (#2395)
  2253. * fix webhook link (#2289)
  2254. * Improve swagger doc (#2274)
  2255. * Add link to forum in issue template (#2070)
  2256. * add missing lfs config on example file (#2039)
  2257. * Add discourse link (#2027)
  2258. * Fix wording (#2024)
  2259. * Fix typo (#1974)
  2260. * Swagger docs for list/create forks (#1941)
  2261. * Update links to Discord server (#1940)
  2262. * [ci skip] update discord badge. (#1930)
  2263. * Change join chat from gitter to discord (#1929)
  2264. * Update changelog with v1.1.1 (#1926)
  2265. * Correct grammar in APIEmpty documentation (#1748)
  2266. * Add swagger comment for MirrorSync (#1747)
  2267. * Add "Table of Contents" in CONTRIBUTING.md (#1634)
  2268. * Fix service description in Debian init file (#1538)
  2269. * Use MAINTAINERS file in repository in CONTRIBUTING (#1489)
  2270. * Generate swagger json (#1402)
  2271. * Changed text when password reset disabled. (#1364)
  2272. * Removed email copyright year (#1348)
  2273. * Specify that time interval units are seconds (#1311)
  2274. * Gitea OpenID-2.0 login has been tested with livejournal.com too (#1306)
  2275. * Make wording of commit search more clear (#1291)
  2276. * Add notice that LFS mirroring is not supported (#1251)
  2277. * Fix typos in models/ and modules/ (#1248)
  2278. * Refactor and fix incorrect comment (#1247)
  2279. * Fix migration comment (#1241)
  2280. * Update locale_en-US.ini (#1235)
  2281. * Add LibreJS support (#1201)
  2282. * rename OSX to macOS (#1176)
  2283. * add mssql to app.ini db config comment (#1172)
  2284. * Add MSSQL to issues template (#1171)
  2285. * MISC
  2286. * Add badge and link to the Matrix room (#2348)
  2287. * ignore coverage steps. (#2257)
  2288. * Use sqlite3 database as default for Docker image (#2182)
  2289. * update drone discord plugin to 0.0.4 version (#1992)
  2290. * fix typo (#1990)
  2291. * Move 3rd party js/css into `public/vendor` and document sources (#2383)
  2292. * Prevent conflicting TOTP accounts by adding AppURL to issuer parameter (#2335)
  2293. * Fix variable name typo (#2327)
  2294. * Make use of Vue more universal (#2318)
  2295. * Remove (almost) server side data rendering from repo-search component (#2317)
  2296. * Add OpenID configuration in install page (#2276)
  2297. * More tweaks to repo top panel (#2267)
  2298. * File path tweaks in UI (#2264)
  2299. * Make SHOW_USER_EMAIL also apply to profiles (#2258)
  2300. * EnableUnit() -> UnitEnabled() (#2242)
  2301. * Prevent selection of diff line numbers (#2240)
  2302. * Remove unused variable on makefile (#2225)
  2303. * No error log entries for repo 404 (#2200)
  2304. * Refactor vue delimeters to use es6 template delimeters (#2171)
  2305. * Replace tmp with TMPDIR. (#2152)
  2306. * Remove unused files (#2124)
  2307. * Improve org error handling (#2117)
  2308. * Absolute path for setting.CustomConf (#2085)
  2309. * remove deprecated code for Gogs compitable (#2041)
  2310. * Refactor session close as xorm already does everything needed internally (#2020)
  2311. * SQLite has a query timeout. Hopefully fixes most 'database locked' errors (#1961)
  2312. * Use monospace font in githook editor (#1958)
  2313. * Fix import order (#1951)
  2314. * Gracefully handle bare repositories on API operations. (#1932)
  2315. * Fix errors caused by force push (#1927)
  2316. * Display URLs in integration test logs (#1924)
  2317. * Set TMPDIR enviroment variable for dump command (#1915)
  2318. * Cache ctx.User in retrieveFeeds (#1902)
  2319. * Make `LocalCopyPath` a setting instead of a hard-coded path (#1881)
  2320. * Add check misspelling (#1877)
  2321. * Fix misspelled variables (#1874)
  2322. * Gofmt (#1868, #1710, #1662)
  2323. * Rename misnamed migration (#1867)
  2324. * Support CRLF when splitting code lines for display (#1862)
  2325. * Add convert less css file step. (#1861)
  2326. * Prevent accidential selection of line numbers in code view (#1860)
  2327. * Delete Public SSH Key tmp file after calculating fingerprint (#1855)
  2328. * Remove annoying difference in button heights. (#1853)
  2329. * Only run test coverage on master branch. (#1838)
  2330. * Error from mktemp command in MacOS. (#1837)
  2331. * Use writeTmpKeyFile in calcFingerprint (#1828)
  2332. * ROOT_URL setting use the default as shown in conf/app.ini (#1823)
  2333. * Rename RepoCreationNum -> MaxCreationLimit (#1766)
  2334. * Add button to admin ui (#1738)
  2335. * Correct spelling mistakes (#1703)
  2336. * Make openid support default false for compitable with v1.1 (#1650)
  2337. * Send mails as HTML as default. Setting for send as plain text. (#1648)
  2338. * fix potential lock when sqlite (#1647)
  2339. * Optimize png images via Google zopflipng [ci skip] (#1639)
  2340. * Upgrade alpine to v3.5 in Dockerfile (#1633)
  2341. * remove unused vendor packages (#1620)
  2342. * markup: microoptimise for many short filenames in directory (#1534)
  2343. * support health check via / and fix #969 (#1520)
  2344. * Remove env user salt since no need to use (#1515)
  2345. * Drop db operations from hook commands (#1514)
  2346. * Better URL validation (#1507)
  2347. * Migrate WatchInfo struct to api (#1492)
  2348. * refactor: show command help message. (#1486)
  2349. * refactor update ssh key use time (#1466)
  2350. * Set VERSION from git once, in a variable (#1447)
  2351. * Remove unused mutex field (#1440)
  2352. * Simplify settings pages with item list (#1389)
  2353. * Clean-up PostgreSQL Tests (#1361)
  2354. * refactor: remove workaround after the golang 1.7 release. (#1349)
  2355. * Delete the useless code (#1335)
  2356. * Run "make fmt" with go-1.6 (#1333)
  2357. * Refactor admin/auth/new.tmpl (#1277)
  2358. * Refactor repo/issue/view_content.tmpl (#1276)
  2359. * Cleaner ui for admin, repo settings, and user settings page (#1269) (#1270)
  2360. * Cleaner UI for explore page (#1253) (#1255)
  2361. * Synced licenses with github repo (#1246)
  2362. * Synced gitignores with github repo (#1245)
  2363. * Simplify RepositoryList.loadAttributes() (#1211)
  2364. * Move user_follow to separate file (#1210)
  2365. * Reduce conditionals in signin/signup inner forms (#1138)
  2366. ## [1.1.4](https://github.com/go-gitea/gitea/releases/tag/v1.1.4) - 2017-09-04
  2367. * BUGFIXES
  2368. * Fix rendering of external links (#2292) (#2315)
  2369. * Fix deleted milestone bug (#1942) (#2300)
  2370. * fix 500 error when view an issue which's milestone deleted (#2297) (#2299)
  2371. * Fix SHA1 hash linking (#2143) (#2293)
  2372. * back port from #1709 (#2291)
  2373. ## [1.1.3](https://github.com/go-gitea/gitea/releases/tag/v1.1.3) - 2017-08-03
  2374. * BUGFIXES
  2375. * Fix PR template error (#2008)
  2376. * Fix markdown rendering (fix #1530) (#2043)
  2377. * Fix missing less sources for oauth (backport #1288) (#2135)
  2378. * Don't ignore gravatar error (#2138)
  2379. * Fix diff of renamed and modified file (#2136)
  2380. * Fix fast-forward PR bug (#2137)
  2381. * Fix some security bugs
  2382. ## [1.1.2](https://github.com/go-gitea/gitea/releases/tag/v1.1.2) - 2017-06-13
  2383. * BUGFIXES
  2384. * Enforce netgo build tag while cross-compilation (Backport of #1690) (#1731)
  2385. * fix update avatar
  2386. * fix delete user failed on sqlite (#1321)
  2387. * fix bug not to trim space of login username (#1806)
  2388. * Backport bugfixes #1220 and #1393 to v1.1 (#1758)
  2389. ## [1.1.1](https://github.com/go-gitea/gitea/releases/tag/v1.1.1) - 2017-05-04
  2390. * BUGFIXES
  2391. * Markdown Sanitation Fix [#1646](https://github.com/go-gitea/gitea/pull/1646)
  2392. * Fix broken hooks [#1376](https://github.com/go-gitea/gitea/pull/1376)
  2393. * Fix migration issue [#1375](https://github.com/go-gitea/gitea/pull/1375)
  2394. * Fix Wiki Issues [#1338](https://github.com/go-gitea/gitea/pull/1338)
  2395. * Forgotten migration for wiki githooks [#1237](https://github.com/go-gitea/gitea/pull/1237)
  2396. * Commit messages can contain pipes [#1218](https://github.com/go-gitea/gitea/pull/1218)
  2397. * Verify external tracker URLs [#1236](https://github.com/go-gitea/gitea/pull/1236)
  2398. * Allow upgrade after downgrade [#1197](https://github.com/go-gitea/gitea/pull/1197)
  2399. * 500 on delete repo with issue [#1195](https://github.com/go-gitea/gitea/pull/1195)
  2400. * INI compat with CrowdIn [#1192](https://github.com/go-gitea/gitea/pull/1192)
  2401. ## [1.1.0](https://github.com/go-gitea/gitea/releases/tag/v1.1.0) - 2017-03-09
  2402. * BREAKING
  2403. * The SSH keys can potentially break, make sure to regenerate the authorized keys
  2404. * FEATURE
  2405. * Git LFSv2 support [#122](https://github.com/go-gitea/gitea/pull/122)
  2406. * API endpoints for repo watching [#191](https://github.com/go-gitea/gitea/pull/191)
  2407. * Search within private repos [#222](https://github.com/go-gitea/gitea/pull/222)
  2408. * Hide user email address on explore page [#336](https://github.com/go-gitea/gitea/pull/336)
  2409. * Protected branch system [#339](https://github.com/go-gitea/gitea/pull/339)
  2410. * Sendmail for mail delivery [#355](https://github.com/go-gitea/gitea/pull/355)
  2411. * API endpoints for org webhooks [#372](https://github.com/go-gitea/gitea/pull/372)
  2412. * Enabled MSSQL support [#383](https://github.com/go-gitea/gitea/pull/383)
  2413. * API endpoints for org teams [#370](https://github.com/go-gitea/gitea/pull/370)
  2414. * API endpoints for collaborators [#375](https://github.com/go-gitea/gitea/pull/375)
  2415. * Graceful server restart [#416](https://github.com/go-gitea/gitea/pull/416)
  2416. * Commitgraph / timeline on commits page [#428](https://github.com/go-gitea/gitea/pull/428)
  2417. * API endpoints for repo forks [#509](https://github.com/go-gitea/gitea/pull/509)
  2418. * API endpoints for releases [#510](https://github.com/go-gitea/gitea/pull/510)
  2419. * Folder jumping [#511](https://github.com/go-gitea/gitea/pull/511)
  2420. * Stars tab on profile page [#519](https://github.com/go-gitea/gitea/pull/519)
  2421. * Notification system [#523](https://github.com/go-gitea/gitea/pull/523)
  2422. * Push and pull through reverse proxy basic auth [#524](https://github.com/go-gitea/gitea/pull/524)
  2423. * Search for issues and pull requests [#530](https://github.com/go-gitea/gitea/pull/530)
  2424. * API endpoint for stargazers [#597](https://github.com/go-gitea/gitea/pull/597)
  2425. * API endpoints for subscribers [#598](https://github.com/go-gitea/gitea/pull/598)
  2426. * PID file support [#610](https://github.com/go-gitea/gitea/pull/610)
  2427. * Two factor authentication (2FA) [#630](https://github.com/go-gitea/gitea/pull/630)
  2428. * API endpoints for org users [#645](https://github.com/go-gitea/gitea/pull/645)
  2429. * Release attachments [#673](https://github.com/go-gitea/gitea/pull/673)
  2430. * OAuth2 consumer [#679](https://github.com/go-gitea/gitea/pull/679)
  2431. * Add ability to fork your own repos [#761](https://github.com/go-gitea/gitea/pull/761)
  2432. * Search repository on dashboard [#773](https://github.com/go-gitea/gitea/pull/773)
  2433. * Search bar on user profile [#787](https://github.com/go-gitea/gitea/pull/787)
  2434. * Track label changes on issue view [#788](https://github.com/go-gitea/gitea/pull/788)
  2435. * Allow using custom time format [#798](https://github.com/go-gitea/gitea/pull/798)
  2436. * Redirects for renamed repos [#807](https://github.com/go-gitea/gitea/pull/807)
  2437. * Track assignee changes on issue view [#808](https://github.com/go-gitea/gitea/pull/808)
  2438. * Track title changes on issue view [#841](https://github.com/go-gitea/gitea/pull/841)
  2439. * Archive cleanup action [#885](https://github.com/go-gitea/gitea/pull/885)
  2440. * Basic Open Graph support [#901](https://github.com/go-gitea/gitea/pull/901)
  2441. * Take back control of Git hooks [#1006](https://github.com/go-gitea/gitea/pull/1006)
  2442. * API endpoints for user repos [#1059](https://github.com/go-gitea/gitea/pull/1059)
  2443. * BUGFIXES
  2444. * Fixed counting issues for issue filters [#413](https://github.com/go-gitea/gitea/pull/413)
  2445. * Added back default settings for SSH [#500](https://github.com/go-gitea/gitea/pull/500)
  2446. * Fixed repo permissions [#513](https://github.com/go-gitea/gitea/pull/513)
  2447. * Issues cannot be created with labels [#622](https://github.com/go-gitea/gitea/pull/622)
  2448. * Add a reserved wiki paths check to the wiki [#720](https://github.com/go-gitea/gitea/pull/720)
  2449. * Update website binding MaxSize to 255 [#722](https://github.com/go-gitea/gitea/pull/722)
  2450. * User can see the private activity on public history [#818](https://github.com/go-gitea/gitea/pull/818)
  2451. * Wrong pages number which includes private repositories [#844](https://github.com/go-gitea/gitea/pull/844)
  2452. * Trim whitespaces for search keyword [#893](https://github.com/go-gitea/gitea/pull/893)
  2453. * Don't rewrite non-gitea public keys [#906](https://github.com/go-gitea/gitea/pull/906)
  2454. * Use fingerprint to check instead content for public key [#911](https://github.com/go-gitea/gitea/pull/911)
  2455. * Fix random avatars [#1147](https://github.com/go-gitea/gitea/pull/1147)
  2456. * ENHANCEMENT
  2457. * Refactored process manager [#75](https://github.com/go-gitea/gitea/pull/75)
  2458. * Restrict rights to create new orgs [#193](https://github.com/go-gitea/gitea/pull/193)
  2459. * Added label and milestone sorting [#199](https://github.com/go-gitea/gitea/pull/199)
  2460. * Make minimum password length configurable [#223](https://github.com/go-gitea/gitea/pull/223)
  2461. * Speedup conflict checking on pull requests [#276](https://github.com/go-gitea/gitea/pull/276)
  2462. * Added button to delete merged pull request branches [#441](https://github.com/go-gitea/gitea/pull/441)
  2463. * Improved issue references within markdown [#471](https://github.com/go-gitea/gitea/pull/471)
  2464. * Dutch translation for the landingpage [#487](https://github.com/go-gitea/gitea/pull/487)
  2465. * Added Gogs migration script [#532](https://github.com/go-gitea/gitea/pull/532)
  2466. * Support a .gitea folder for issue templates [#582](https://github.com/go-gitea/gitea/pull/582)
  2467. * Enhanced diff-view coloring [#584](https://github.com/go-gitea/gitea/pull/584)
  2468. * Added ETag header to avatars [#721](https://github.com/go-gitea/gitea/pull/721)
  2469. * Added option to config to disable local path imports [#724](https://github.com/go-gitea/gitea/pull/724)
  2470. * Allow custom public files [#782](https://github.com/go-gitea/gitea/pull/782)
  2471. * Added pprof endpoint for debugging [#801](https://github.com/go-gitea/gitea/pull/801)
  2472. * Added `X-GitHub-*` headers [#809](https://github.com/go-gitea/gitea/pull/809)
  2473. * Fill SSH key title automatically [#863](https://github.com/go-gitea/gitea/pull/863)
  2474. * Display Git version on admin panel [#921](https://github.com/go-gitea/gitea/pull/921)
  2475. * Expose URL field on issue API [#982](https://github.com/go-gitea/gitea/pull/982)
  2476. * Statically compile the binaries [#985](https://github.com/go-gitea/gitea/pull/985)
  2477. * Embed build tags into version string [#1051](https://github.com/go-gitea/gitea/pull/1051)
  2478. * Gitignore support for FSharp and Clojure [#1072](https://github.com/go-gitea/gitea/pull/1072)
  2479. * Custom templates for static builds [#1087](https://github.com/go-gitea/gitea/pull/1087)
  2480. * Add ProxyFromEnvironment if none set [#1096](https://github.com/go-gitea/gitea/pull/1096)
  2481. * MISC
  2482. * Replaced remaining Gogs references
  2483. * Added more tests on various packages
  2484. * Use Crowdin for translations again
  2485. * Resolved some XSS attack vectors
  2486. * Optimized and reduced number of database queries
  2487. ## [1.0.2](https://github.com/go-gitea/gitea/releases/tag/v1.0.2) - 2017-02-21
  2488. * BUGFIXES
  2489. * Fixed issue counter [#882](https://github.com/go-gitea/gitea/pull/882)
  2490. * Fixed XSS vulnerability on wiki page [#955](https://github.com/go-gitea/gitea/pull/955)
  2491. * Add data dir without session to dump [#587](https://github.com/go-gitea/gitea/pull/587)
  2492. * Fixed wiki page renaming [#958](https://github.com/go-gitea/gitea/pull/958)
  2493. * Drop default console logger if not required [#960](https://github.com/go-gitea/gitea/pull/960)
  2494. * Fixed docker docs link on install page [#972](https://github.com/go-gitea/gitea/pull/972)
  2495. * Handle SetModel errors [#957](https://github.com/go-gitea/gitea/pull/957)
  2496. * Fixed XSS vulnerability on milestones [#977](https://github.com/go-gitea/gitea/pull/977)
  2497. * Fixed XSS vulnerability on alerts [#981](https://github.com/go-gitea/gitea/pull/981)
  2498. ## [1.0.1](https://github.com/go-gitea/gitea/releases/tag/v1.0.1) - 2017-01-05
  2499. * BUGFIXES
  2500. * Fixed localized `MIN_PASSWORD_LENGTH` [#501](https://github.com/go-gitea/gitea/pull/501)
  2501. * Fixed 500 error on organization delete [#507](https://github.com/go-gitea/gitea/pull/507)
  2502. * Ignore empty wiki repo on migrate [#544](https://github.com/go-gitea/gitea/pull/544)
  2503. * Proper check access for forking [#563](https://github.com/go-gitea/gitea/pull/563)
  2504. * Fix SSH domain on installer [#506](https://github.com/go-gitea/gitea/pull/506)
  2505. * Fix missing data rows on admin UI [#580](https://github.com/go-gitea/gitea/pull/580)
  2506. * Do not delete tags with releases by default [#579](https://github.com/go-gitea/gitea/pull/579)
  2507. * Fix missing session config data on admin UI [#578](https://github.com/go-gitea/gitea/pull/578)
  2508. * Properly show the version within footer on the UI [#593](https://github.com/go-gitea/gitea/pull/593)
  2509. ## [1.0.0](https://github.com/go-gitea/gitea/releases/tag/v1.0.0) - 2016-12-23
  2510. * BREAKING
  2511. * We have various changes on the API, scripting against API must be updated
  2512. * FEATURE
  2513. * Show last login for admins [#121](https://github.com/go-gitea/gitea/pull/121)
  2514. * BUGFIXES
  2515. * Fixed sender of notifications [#2](https://github.com/go-gitea/gitea/pull/2)
  2516. * Fixed keyword hijacking vulnerability [#20](https://github.com/go-gitea/gitea/pull/20)
  2517. * Fixed non-markdown readme rendering [#95](https://github.com/go-gitea/gitea/pull/95)
  2518. * Allow updating draft releases [#169](https://github.com/go-gitea/gitea/pull/169)
  2519. * GitHub API compliance [#227](https://github.com/go-gitea/gitea/pull/227)
  2520. * Added commit SHA to tag webhook [#286](https://github.com/go-gitea/gitea/issues/286)
  2521. * Secured links via noopener [#315](https://github.com/go-gitea/gitea/issues/315)
  2522. * Replace tabs with spaces on wiki title [#371](https://github.com/go-gitea/gitea/pull/371)
  2523. * Fixed vulnerability on labels and releases [#409](https://github.com/go-gitea/gitea/pull/409)
  2524. * Fixed issue comment API [#449](https://github.com/go-gitea/gitea/pull/449)
  2525. * ENHANCEMENT
  2526. * Use proper import path for libravatar [#3](https://github.com/go-gitea/gitea/pull/3)
  2527. * Integrated DroneCI for tests and builds [#24](https://github.com/go-gitea/gitea/issues/24)
  2528. * Integrated dependency manager [#29](https://github.com/go-gitea/gitea/issues/29)
  2529. * Embedded bindata optionally [#30](https://github.com/go-gitea/gitea/issues/30)
  2530. * Integrated pagination for releases [#73](https://github.com/go-gitea/gitea/pull/73)
  2531. * Autogenerate version on every build [#91](https://github.com/go-gitea/gitea/issues/91)
  2532. * Refactored Docker container [#104](https://github.com/go-gitea/gitea/issues/104)
  2533. * Added short-hash support for downloads [#211](https://github.com/go-gitea/gitea/issues/211)
  2534. * Display tooltip for downloads [#221](https://github.com/go-gitea/gitea/issues/221)
  2535. * Improved HTTP headers for issue attachments [#270](https://github.com/go-gitea/gitea/pull/270)
  2536. * Integrate public as bindata optionally [#293](https://github.com/go-gitea/gitea/pull/293)
  2537. * Integrate templates as bindata optionally [#314](https://github.com/go-gitea/gitea/pull/314)
  2538. * Inject more ENV variables into custom hooks [#316](https://github.com/go-gitea/gitea/issues/316)
  2539. * Correct LDAP login validation [#342](https://github.com/go-gitea/gitea/pull/342)
  2540. * Integrate conf as bindata optionally [#354](https://github.com/go-gitea/gitea/pull/354)
  2541. * Serve video files in browser [#418](https://github.com/go-gitea/gitea/pull/418)
  2542. * Configurable SSH host binding [#431](https://github.com/go-gitea/gitea/issues/431)
  2543. * MISC
  2544. * Forked from Gogs and renamed to Gitea
  2545. * Catching more errors with logs
  2546. * Fixed all linting errors
  2547. * Made the go linter entirely happy
  2548. * Really integrated vendoring