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

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