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

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