changelog.rst 99 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160
  1. Changelog
  2. =========
  3. This document records all notable changes to `Pagure <https://pagure.io>`_.
  4. 5.9 (2020-03-XX)
  5. ----------------
  6. - Swap "Add" and "Cancel" button ordering for access management (Ken Dreyer)
  7. - Add API to manage plugins (ie: git hooks) (Michal Konečný)
  8. - Fix querying mdapi from within the srcfpo theme (Karsten Hopp)
  9. - Add support for pygit2 1.0.0 (Julen Landa Alustiza)
  10. - Fix activity stats api tests when running the tests at the beginning of
  11. the year (Julen Landa Alustiza)
  12. - Add logic to set bugzilla assignee overrides from within the srcfpo theme
  13. (Karsten Hopp)
  14. - Multiple fixes and improvements to the API endpoints to retrieve the tags
  15. used in a project (Julen Landa Alustiza)
  16. - Add a new API endpoint to add tags to a project (Julen Landa Alustiza)
  17. - Add a new API endpoint to delete tags of a project (Julen Landa Alustiza)
  18. - Add a new API endpoint to edit/update an existing issue/ticket(Julen Landa
  19. Alustiza)
  20. - Add a new page to see a file's history in git (linked from the file's view page
  21. and the blame page)
  22. - Only consider the 6 most recently active branch in the drop-down to create
  23. new PR
  24. - Fix the view_commit endpoint when the identifier provided is a git tag
  25. - Add an endpoint to renew user API token
  26. - Include a link to where the token can be renewed in the email about API
  27. token nearing expiration
  28. - Allow users to set their own expiration date on API token (up to 2 years)
  29. - Fix the /groups API endpoint and order the output by group name
  30. - Add a new API endpoint to retrieve a project's webhook token (Fabien
  31. Boucher)
  32. - Expose related_prs on issue API (Lenka Segura)
  33. - Fix the regenerate-repo actions
  34. - Reword "Maintained by orphan" to "Package is currently unmaintained" in
  35. the srcfpo theme (Fabio Valentini)
  36. - Add support for werkzeug 1.0
  37. - Only enable the "Take" button once we know the package is active in the
  38. srcfpo theme
  39. - Make the "Issue" link in the info page point to bugzilla in the srcfpo
  40. theme
  41. - Provide some feedback to the user when changing monitoring worked
  42. - Hide the SSH clone URL if the user is not in one of the group with ssh
  43. access
  44. - Order pull requests based on updated_on column when we want to order based
  45. on last updated time (Julen Landa Alustiza)
  46. - Update README to reference correct minimum version of pygit2 (Neal Gompa)
  47. - Support python markdown >= 3.2.0 (Julen Landa Alustiza)
  48. - Fix taking into account the blacklisted patterns
  49. - Add a new API endpoint to add git tags to a project remotely
  50. - Rework/fix the API documentation page (Julen Landa Alustiza)
  51. 5.8.1 (2019-12-02)
  52. ------------------
  53. - Fix the link to the container namespace in srcfpo
  54. - Fix checking if the user is a committer of the repo the PR originates from
  55. - Fix showing the origin of the PR when it originates from the same project
  56. - Do not hard-code UTF-8 when showing a file
  57. - Fix the Vagrant setup
  58. 5.8 (2019-11-15)
  59. ----------------
  60. - Enable the ctrl-enter keys to submit forms on tickets and PRs (Julen
  61. Landa Alustiza)
  62. - Fix spelling errors on doc/. (Sergio Durigan Junior)
  63. - Fix renewing url on invalid token error message (Julen Landa Alustiza)
  64. - themes/srcfpo: show release-monitoring choice dropdown only on
  65. authenticated sessions (Julen Landa Alustiza)
  66. - themes/srcfpo: fix error callback on release-monitoring button ajax
  67. (Julen Landa Alustiza)
  68. - When not authenticated show the 'take' button but disabled
  69. - disable smooth scrolling on initial highlight & scroll process (Julen
  70. Landa Alustiza)
  71. - Accept a with_commits parameter on the branches api to resolve the HEAD
  72. commits (Brian Stinson)
  73. - Fix PR view when fork was deleted (Julen Landa Alustiza)
  74. - Return to the pr view after merging it (Julen Landa Alustiza)
  75. - Add asciidoc syntax override (FeRD (Frank Dana))
  76. - Fix git blame on unborn HEAD or non-master default branch repos (Julen
  77. Landa Alustiza)
  78. - Drop the adopt button when the package is retired
  79. - Add a set-default-branch action to pagure-admin (Julen Landa Alustiza)
  80. - Allow changing allow_rebase from pull-request edit (Julen Landa Alustiza)
  81. - Add revision along with tag/branch creation/deletion (Fabien Boucher)
  82. - Send oldrev as old_commit for git.receive event (Fabien Boucher)
  83. - Tag filtering support on pull requests list view (Julen Landa Alustiza)
  84. - Tag filtering support on api pull requests endpoint (Julen Landa Alustiza)
  85. - Send notification when a branch is created (Fabien Boucher)
  86. - themes/srcfpo: show navigation buttons, anitya integration and orphan
  87. taking button only when namespace is not test (Julen Landa Alustiza)
  88. - Add support to expire and update any API token, not just the admin ones
  89. - theme/srcfpo: Include the package's update information in their info page
  90. - Fix setting one's default email address (Julen Landa Alustiza)
  91. - Fix the logic to rebase PRs (Julen Landa Alustiza)
  92. - Add support for arrow >= 0.15
  93. - Select full text on git|ssh url input boxes when they get focus (Julen
  94. Landa Alustiza)
  95. 5.7.9 (2019-09-05)
  96. ------------------
  97. - Fix rendering badges on the PR list page
  98. - Tweak when we show the merge and the rebase buttons
  99. - Fix the logic around interacting with read-only databases in hooks
  100. - Fix .diff and .patch generation for empty commits
  101. 5.7.8 (2019-08-28)
  102. ------------------
  103. - themes/srcfpo: Fix some csp errors
  104. - themes/srcfpo: Fix error message when interacting with the release-monitoring
  105. button
  106. - themes/srcfpo: Show the release-monitoring dropdown only on authenticated
  107. users
  108. - themes/srcfpo: Fix capitalization incoherency
  109. - Fix url on the invalid token error message
  110. - Fix typo on the pull request merge error message
  111. 5.7.7 (2019-08-21)
  112. ------------------
  113. - Allow cross-project API token to open pull-request
  114. - Move the button to change the anitya status to use POST requests
  115. 5.7.6 (2019-08-21)
  116. ------------------
  117. - Allow updating PRs via the API using cross-project tokens
  118. 5.7.5 (2019-08-21)
  119. ------------------
  120. - Fix the logic to make the merge button appear on pull-request
  121. 5.7.4 (2019-08-10)
  122. ------------------
  123. - Fix again the alembic revision adding support for allow_rebase on PRs to
  124. actually work with mysql
  125. - Relax the default CSP policy so avatars are loaded from libravatar and other
  126. outside resources
  127. - Improve the support for spec file highlighting
  128. 5.7.3 (2019-08-02)
  129. ------------------
  130. - Fix the alembic revision adding support for allow_rebase on PRs to work with
  131. mysql
  132. - Make the doc build in sphinx with python3 by default
  133. 5.7.2 (2019-07-30)
  134. ------------------
  135. - More CSP headers related fixes (Again thanks to Julen Landa Alustiza)
  136. - Ensures @<username> doesn't overreach to email
  137. 5.7.1 (2019-07-12)
  138. ------------------
  139. - More CSP headers fixes (Thanks again to Julen Landa Alustiza for them!)
  140. 5.7 (2019-07-05)
  141. ----------------
  142. - Many fixes to properly support for CSP headers (Many thanks to Julen Landa
  143. Alustiza for his help with this)
  144. - Fix the blame view
  145. - Allow project-less API token to retrieve issues via the API
  146. - Better integration work on our fork of highlightjs-line-numbers (Julen Landa
  147. Alustiza)
  148. - Document the git auth backend `pagure` (mrx@mailinator.com)
  149. - Catch ImportError before trying to catch any fedora_messaging exceptions
  150. - pagure markdown extension: encapsulate our markdowns on a div tag (Julen Landa
  151. Alustiza)
  152. - Add styling for markdown tables (Julen Landa Alustiza)
  153. - Always notify the person who opened the ticket/PR or are assigned to it
  154. - Add a create-branch action to pagure-admin
  155. - Bump jquery to latest version, fixing some CSP errors (Julen Landa Alustiza)
  156. - Fix file view anchor link highlight & scrolling (Julen Landa Alustiza)
  157. - Focus the comment textarea after hitting the reply button (Julen Landa Alustiza)
  158. 5.6 (2019-06-04)
  159. ----------------
  160. .. warning:: This release contains a security fix for CVE-2019-11556
  161. - Couple of fixes for the mirroring-in feature
  162. - Fix linking to issues or PRs when pre-viewing a comment
  163. - Include a search icon near the filter button on the issues list
  164. - Include a small introduction text to email on loading files
  165. - Move the side-bar of the repo_master into its own template for easier
  166. overriding by other themes
  167. - Enforce black on all pagure, including tests, docs and all
  168. - Add an option to pagure-admin to delete a project
  169. - Add an option to pagure-admin block-user to list the users blocked
  170. - Ensure "No activity" rows get removed on subsequent updates of the calendar
  171. heatmap (Frank Dana)
  172. - Send a notification upon editing the initial comment of a PR
  173. - Send notifications on tag creation and tag and branch deletion
  174. - Comment reply button: remove icon title (Frank Dana)
  175. - Fix updating project options when running pagure in python 2
  176. - Fix the test button for webhook notifications
  177. - Fix opening PR on forks on the page listing the PRs
  178. - Add repo_from argument for API create pull request (Lenka Segura)
  179. - Drop commit_flags_uid_key from commit_flags
  180. - Add missing namespace in the link to edit inline comments in PR
  181. - Add support for allowing the maintainers of the target project rebase
  182. - Do not allow rebase via the API if the PR does not allow it
  183. - Improve the install documentation (MR)
  184. - Add CSP headers support and a mechanism to customize them
  185. - Fix triggering a CI run on remote pull-requests
  186. - Add a button to take maintenance of orphaned packages in dist-git
  187. - Fix giving a project to someone who already had it
  188. - Ensure the blame view does not render html
  189. 5.5 (2019-04-08)
  190. ----------------
  191. - themes/srcfpo: move icons to the theme instead of linking them from other apps
  192. (Julen Landa Alustiza)
  193. - Add support for !owner to the API listing projects
  194. - Make sure that TemporaryClone.push also pushes tags (Slavek Kabrda)
  195. - Add missing "line" in comments links (Tim Landscheidt)
  196. - Include the target branch of the PR when triggering jenkins
  197. - Provide more information about invalid tokens
  198. - Fix the pagination on the fork page of the dashboard
  199. - Fix opening/viewings PRs from the branch pages on the srcfpo theme
  200. - Allow linking issues to PRs in the initial comment of a PR
  201. - Allow blocking an user on a project
  202. - Add support for username and password based authentication for pagure-ci
  203. - Remove extra "s" character from the starred repos page (Michael Watters)
  204. - Link to bugzilla for rpms, modules and container in the srcfpo theme
  205. - Add a button to select/unselect all the ACLs (Lenka Segura)
  206. - Fix the user in the notification about rebased PR
  207. - pagure/ui/fork: fix pull request closing flash message
  208. - Do not link on the "Star" button if the user is not authenticated
  209. - Replace calls to pygit2.clone_repository by calls to git clone directly
  210. - Support deployments where git hook have a read-only access to the db
  211. - Make fork more performant by using 'git push --mirror' (Slavek Kabrda)
  212. - Move the build ID from the title to the comment of the flag
  213. - Fix the new PR drop-down button
  214. - User the user's default email when rebasing
  215. - Fix a bug that preventing properly cleaning up a project in the DB if we
  216. failed to create its repositories on disk
  217. - Fix showing branches having unicode characters in their names
  218. - Make the hook mechanism support utf-8 branch names
  219. - Include some shortcuts to the different namespaces in the srcfpo theme
  220. 5.4 (2019-03-28)
  221. ----------------
  222. - Allow by default the ACL "pull_request_create" on project-less API token
  223. (Lenka Segura)
  224. - Implement Pagure Git Auth (Patrick Uiterwijk)
  225. - Add a upper limit to sqlalchemy as 1.3.0 breaks our tests
  226. - Add a new API endpoint allowing to update an existing PR
  227. - If the user doesn't have a valid ssh key inform but let them log in
  228. - Fix displaying diffs that contain symlinks (Slavek Kabrda)
  229. - Add missing namespace on the link to see the user's issues when they become
  230. assignee of a ticket
  231. - Add a button to take/drop a pull-request (assignee field)
  232. - Add a new API endpoint to assign pull-request to someone
  233. - Fix the link to view all the user's projects on the dashboard
  234. - Allow dots and plus signs in project names
  235. - When loading blocking or depending tickets restricts the list of tickets based
  236. on the user's input
  237. - Fix seeing releases when the reference prodived returned a commit
  238. - Allow div element to have id tags
  239. - Include the PR tags in their JSON representation
  240. - Inform the user when changing the assignee failed because of an ajax error
  241. - Ensure the comment & close button shows up for the author
  242. - Deprecate fedmsg
  243. - Stream the repoSpanner proxy responses (Patrick Uiterwijk)
  244. - Ensure that forking does not run the hook (Patrick Uiterwijk)
  245. 5.3 (2019-02-22)
  246. ----------------
  247. .. warning:: This release contains a security fix for CVE-2019-762
  248. - Change "created by" to "maintained by" in repo info (Ryan Lerch)
  249. - Fix showing an input box if the minimum score for PR is set to 0
  250. - Fix the output of the merge PR API endpoint when the PR conflicts
  251. - Add some documentation on our magic keywords
  252. - Allow filtering user's PR by time information
  253. - Add the possibility to filter the user's issues by dates
  254. - Add support for the `resolve` keyword among our magic words
  255. - Allow any username to be searched in issues filters (Ryan Lerch)
  256. - Allow using Pagure with python-redis >= 3.0.0 (Neal Gompa)
  257. - Fix Markdown usage to work with Markdown 3.0+ (Neal Gompa)
  258. - Decode the output from the shell commands if they are not already unicode
  259. - Add THEME option docs to configuration documentation (Ryan Lerch)
  260. - Fix updating the date_modified when giving the project to someone
  261. - Don't try mirroring if we failed generating private key
  262. - Change couple of log entries from info to warning
  263. - Cascade deleting flags when tokens are deleted
  264. - Ensure there are admin groups before adding them to the list of groups
  265. - Move the create_session function into pagure.lib.model_base
  266. - Make the button to show/hide the URL to checkout locally a PR more visible
  267. - Fixup documentation about modifyacls (Igor Gnatenko)
  268. - Force highlight.js to use certain highlighting schemes in file view
  269. (Ryan Lerch)
  270. - Fix the total number of members on the repo info page
  271. - Fix not showing the edit and delete buttons when they won't work
  272. - Add project connector api endpoint (Fabien Boucher)
  273. - Api: project connector endpoint: complete returned data (Fabien Boucher)
  274. - Fix repoSpanner integration (Patrick Uiterwijk)
  275. - Make sure repoSpanner tests run in CentOS CI (Patrick Uiterwijk)
  276. - Only block new branches in hooks (Lubomír Sedlář)
  277. - Add support for fedora-messaging in pagure
  278. - Fix calculation of days until API key expires in the emails (Karsten Hopp)
  279. - Move to container-based testing on jenkins testing the following environment
  280. - F29 using python3 with dependencies installed as RPMs
  281. - F29 using python3 with dependencies installed via pip
  282. - CentOS7 using python2 with dependencies installed as RPMs
  283. - Add project createapitoken endpoint (Fabien Boucher)
  284. - CVE-2019-7628: Do not leak partial API keys. (Randy Barlow)
  285. - Provide full repospanner reponame for aclchecker/repobridge (Slavek Kabrda)
  286. - Allow turning on issue tracking for only some namespaces
  287. - Do not allow `,` in tags
  288. - Ensure we can add/edit/delete tags even when issues are off but PRs aren't
  289. - Fix cancelling a rebase
  290. - Add options to send notifications on all the message bus we support on all
  291. commits
  292. 5.2 (2019-01-07)
  293. ----------------
  294. - Add support for the MQTT protocol (jingjing)
  295. - Add support for mirroring in git repositories from outside sources
  296. - Add the possibility to give a group away
  297. - Port pagure to markdown 3.0+ while remaining backward compatible
  298. - Add support to merge a PR when the fork was deleted
  299. - Indicate that the file can be either empty or a binary file in diffs
  300. - Add the API endpoint to create new PR in the API doc
  301. - Add the ability to generate archive from a commit or tag
  302. - Allow searching the content of the comments on an issue tracker
  303. - Allow filtering the issue list by the close status
  304. - Update the version of highlightjs-line-numbers. (Clement Verna)
  305. - Store the user who closed a ticket in the database. (Clement Verna)
  306. - Show related PRs on the issue list if there are any
  307. - Bypass old hooks rather than using non-existing symlinks
  308. - Undo submitting comment via JS if the SSE is down
  309. - Make links act like links in the commit message (Ryan Lerch)
  310. - Add build status to pull requests page (Michael Watters)
  311. - Bump the minimal pygit2 version to 0.26.0 (Pierre-Yves Chibon)
  312. - Make update_pull_ref more robust by making sure fork ref is deleted
  313. (Slavek Kabrda)
  314. - Provide feedback to the user if PRs are disabled in the default target
  315. projects
  316. - Add a new API endpoint to update the options set for a project
  317. - Add a new API endpoint to retrieve the options of a project
  318. - Update the quick replies button when going into edit mode
  319. - Hide extra GIT URLs behind a collapseable element (Ryan Lerch)
  320. - Save metadata changes when changing status with dropdown (Ryan Lerch)
  321. - Align markdown block of code and citation with GitHub CSS. (Jun Aruga)
  322. - Change formatting of the issue list to make more readable (Ryan Lerch)
  323. - Rename the fedmsg.py hook into fedmsg_hook.py as otherwise it conflicts
  324. - Allow commenting on a PR when clicking on the merge button
  325. - Include whether the PR passed the threshold or not in the API data
  326. - Change the way votes are recorded on PRs
  327. - Add support for third-party extensions to pagure (this is very much
  328. work in progress and might/will fluctuate as it is polished - Do Not
  329. Consider This Stable)
  330. - Enable token authentication on internal endpoints (Slavek Kabrda)
  331. - Fix notifications and refreshing the cached merge status upon updates
  332. - Allow specifying a branch when adding content to git
  333. - Add support for rebasing pull-requests
  334. - Fix viewing patch attached to ticket
  335. - Add link to starred projects in the user menu (Michael Watters)
  336. - Prevent double click from showing two input form
  337. - Fix linking to specific lines in a pull-request
  338. - Do not assume master if the default branch
  339. - Send dedicated notifications when a PR is updated or rebased
  340. - Show the update date/time rather than the creation one on flags
  341. - Allow running 'git gc' explicitly after every object-adding git operation
  342. (Slavek Kabrda)
  343. - Let any contributor to a project update the PR meta-data
  344. - Rename "Cancel a PR" into "Close a PR"
  345. - Add a Date type to the custom fields (Karsten Hopp)
  346. - Add a new API endpoint to retrieve the flags of a pull-request
  347. - Fix rendering comment added via JS
  348. - Fix API task status endpoint (Slavek Kabrda)
  349. - Make it possible to create hooks that don't have DB entries (Slavek Kabrda)
  350. - Render status of dependent tickets differently on open/close (Akanksha)
  351. - Implement a button to rerun CI tests on a pull request (Slavek Kabrda)
  352. - Support disallowing remote pull requests (Karsten Hopp)
  353. - Change button name to Save instead of Edit while editing pull request
  354. (anshukira)
  355. - Make sure to also log exceptions in non-debug mode (Patrick Uiterwijk)
  356. - Allow filtering from the milestones page (Akanksha Mishra)
  357. - Fix multimail config with empty auth or disabled tls (Patrick Uiterwijk)
  358. - Add an about page in the themes (Mary Kate Fain)
  359. - Remove "Activate" from project options (jingjing)
  360. - Add avatar_url to output of user/<username> api (Ryan Lerch)
  361. - Fix showing a regular comment on a PR when there are none before
  362. - Fix the UI on the release page when showing the tag message
  363. - Update the chameleon theme (Stasiek Michalski)
  364. - Fix filtering by status PRs retrieved by the API (Lenka Segura)
  365. 5.1.4 (2018-10-15)
  366. ------------------
  367. - Fix the alembic migration creating the hook_mirror table
  368. - Close the DB session in one place for all hooks
  369. - Add more logging to the pagure_logcom service
  370. - Configure SMTP info for git_multimail (Patrick Uiterwijk)
  371. - Use the PR UID previously read from environment (Patrick Uiterwijk)
  372. 5.1.3 (2018-10-11)
  373. ------------------
  374. - Don't sync up ssh keys if there are already some
  375. - Do not notify twice when pushing commits to an open PR
  376. - Update git-multimail to the 1.4.0 version (fixes getting it working with py3)
  377. 5.1.2 (2018-10-11)
  378. ------------------
  379. - Add some documentation about MIRROR_SSHKEYS_FOLDER
  380. - Make the sshkey migration more flexible (if you have not yet upgraded to 5.1)
  381. - Fix the update date information on the pull-request page
  382. - Fix detecting if the user is a committer via a group
  383. - Fix writing user's ssh keys on disk
  384. - tweak colours of the activity graph (Ryan Lerch)
  385. - Allow a specific list of users to create a project ignoring existing repo
  386. (Patrick Uiterwijk)
  387. - Implement pulling and pushing via repobridge instead of HTTPS
  388. (Patrick Uiterwijk)
  389. - cache oidc user data (Karsten Hopp)
  390. 5.1.1 (2018-10-09)
  391. ------------------
  392. - Fix adding and removing ssh keys in the user's profile
  393. 5.1 (2018-10-09)
  394. ----------------
  395. - Fix rendering issues in chrome (Ryan Lerch)
  396. - Fix the merge button on the PR page when the title is long (Ryan Lerch)
  397. - Hide expired API keys by default but add a button to show them
  398. - Allow linking to the new issue page with a specific template
  399. - Tab order fixed on new issue (Lenka Segura)
  400. - Fix the button to open new pull-request on the branches page
  401. - Fix mail hook getting to mail_to (Patrick Uiterwijk)
  402. - More distinguished Markdown blockquotes (Lenka Segura)
  403. - Correctly exempt default hook from running on non-main (Patrick Uiterwijk)
  404. - Add version information in static file's url to avoid caching in browser
  405. (Neha Kandpal)
  406. - Update README with details on the new testing script(s) (Jingjing Shao)
  407. - Start implementing HTTP pull/push (Patrick Uiterwijk)
  408. - Many fixes around the documentation and onboarding setup (especially the
  409. Vagrant and docker dev environments) (Jingjing Shao, Alex Gleason, Lenka
  410. Segura, Akanksha)
  411. - Fix citing the original comment in a ticket
  412. - Show the comment on issues in JS if the SSE isn't responding
  413. - Fix the From header in notification emails
  414. - Fix loading the group list when adding a group to a project
  415. - Rework how we display loading of the new PR dropdown (Ryan Lerch)
  416. - Display when a PR cannot be merged because of its review score
  417. - Check there is an user associated with the log entry
  418. - Add a note in minimal score to merge in the doc (Fabien Boucher)
  419. - Redirect back to branch list when deleting a branch (Ryan Lerch)
  420. - Rework how ssh keys are stored in the database (Patrick Uiterwijk)
  421. - Allow users to update PR's metadata when the PR is closed
  422. - Fix adding comment on PR via the SSE
  423. - Multiple changes and fixes around the ACL checker (Patrick Uiterwijk)
  424. - Add a spinner when selectize is loading data. (Ryan Lerch)
  425. - Load user async when looking up assignee (Ryan Lerch)
  426. - When a pushed in made to a branch in a PR, update the PR
  427. - Run all hooks in a set, and error out at the end (Patrick Uiterwijk)
  428. - Make hooks raise exceptions instead of sys.exit (Patrick Uiterwijk)
  429. - Fix editing comments on issues and PRs
  430. - Add option to allow any authenticated user to edit meta-data on tickets
  431. - Make the mirroring feature work with older git
  432. - Fix bug in update_milestones (Akanksha)
  433. - Allow admins to ignore existing repositories when creating a project (Patrick
  434. Uiterwijk)
  435. - Adding 'list-groups' function to pagure-admin (Fabian Arrotin)
  436. - Fix letting the user who opened the ticket close it
  437. - Never set readonly flag if a dynamic auth backend is in use (Patrick Uiterwijk)
  438. - Add a new API endpoint to retrieve the list of files changed in a PR
  439. 5.0.1 (2018-09-27)
  440. ------------------
  441. .. warning:: This release contains a security fix
  442. - Add to theme the possibility to display site-wide messages (Ryan Lerch)
  443. - Multiple adjustments to the scripts keyhelper and aclchecker (Patrick Uiterwijk)
  444. - Only enforce Signed-Off-By on the main git repo
  445. - Ignore any and all action done by the pagure user when loading JSON into the db
  446. - Fix the last modified date on the PR list
  447. - Updating regex for URLs and SSH urls
  448. - Use gitolite's own mechanism to bypass the update hook
  449. - Ensure the plugin is active when retrieving them
  450. - Switch from GIT_SORT_TIME to GIT_SORT_NONE to preserver 'git log'-like commit
  451. ordering (Slavek Kabrda)
  452. - Fix pr-dropdown (Ryan Lerch)
  453. - Add hilightjs-line-numbers plugin (Ryan Lerch)
  454. - Fix the reply buttons
  455. - Fix escaping on PR diffs (Ryan Lerch)
  456. - Fix opening/viewing PRs from the branches page
  457. - Fix loading issue template and make the drop-down a little more obvious
  458. - Correctly align edit button for groups in repo settings (Ryan Lerch)
  459. - Fix all-around sidebar heading borders (Ryan Lerch)
  460. - Remove incorrect count label on related PRs (Ryan Lerch)
  461. - Move attachments to sidebar (Ryan Lerch)
  462. - Add reporter and assignee to notification emails headers (Lenka Segura)
  463. - Make sure that ticket changes don't get duplicated (Patrick Uiterwijk)
  464. - Fix the git ssh urls in the templates
  465. - Fix when milestones_keys and milestones get out of sync
  466. - Sign-off the merge commits when the project enforces it
  467. - Add missing alembic migration to create the hook_mirror table
  468. - Don't generate API keys with random.choice (Jeremy Cline)
  469. 5.0 (2018-09-24)
  470. ----------------
  471. .. warning:: This release contains backward incompatible changes and fixes a CVE
  472. - Pagure supports now python2 and python3 simultaneously (Thanks to Aurélien
  473. Bompard and Neal Gompa for the testing)
  474. - New UI deployed (thanks to Ryan Lerch)
  475. - New dashboard page as index page when authenticated (Ryan Lerch)
  476. - API listing items (projects, issues, pull-requests are now paginated (
  477. Karsten Hopp)
  478. .. warning:: Backward incompatible
  479. - Enable private projects by default (Neal Gompa)
  480. .. warning:: Backward incompatible
  481. - Change the default and sample configuration to point to localhost-friendly
  482. resources (Neal Gompa)
  483. .. warning:: Backward incompatible
  484. - Disable sending FedMsg notifications by default (Neal Gompa)
  485. .. warning:: Backward incompatible
  486. - Switch default authentication to `local` (Neal Gompa)
  487. .. warning:: Backward incompatible
  488. - Drop the dependency on python-pygments
  489. - Drop the dependency on flask-multistatic
  490. - Drop the dependency on python-trollius (in favor of python-trololio) (Neal
  491. Gompa)
  492. - Bump pygit2 requirement to 0.24.0 minimum
  493. .. warning:: Backward incompatible
  494. - Add support to re-open a pull-request (Karsten Hopp)
  495. - Fix editing a file into a fork containing a namespace
  496. - Allow creating a new API token based on an expired one
  497. - New API endpoint to submit a pull-request
  498. - Add support for making the issue tracker read-only
  499. - Add a new API endpoint allowing to update watch status on a project
  500. - Paginate the project lists on the front pages
  501. - Let the reply button append instead of replacing
  502. - Add a way to list all API tokens and don't restrict the info command (
  503. in pagure-admin)
  504. - Expand pagure-admin to allow using it to block an user
  505. - Expand pagure-admin to allow adding new groups using it
  506. - Allow viewing commits from a git tag
  507. - Support viewing commits from a specific commit hash
  508. - Add a hook that disables creating new branches by git push (Slavek Kabrda)
  509. - Make API endpoint for creating new git branch have its own ACL
  510. - Support sorting PR's by recent activity (ymdatta)
  511. - Fix installing the API key reminder cron with systemd integration
  512. - Add reactions to comments (Lubomír Sedlář)
  513. - New API endpoint allowing to retrieve pull-requests based on their UUID
  514. (Slavek Kabrda)
  515. - Add an option to restrict emails sent to certain domains (Karsten Hopp)
  516. - Integration with repospanner (Patrick Uiterwijk)
  517. - Rework how git hooks work to rely on a single file rather than moving files
  518. around (Patrick Uiterwijk)
  519. - Add themes for pagure.io, src.fedoraproject.org (Ryan Lerch)
  520. - Add themes for OpenSUSE (hellcp)
  521. - Ensure remote PR are opened from a remote URL (CVE-2018-1002158 - reported by
  522. Patrick Uiterwijk)
  523. 4.0.4 (2018-07-19)
  524. ------------------
  525. .. note:: This release fixes CVE-2018-1002155, CVE-2018-1002156,
  526. CVE-2018-1002157, CVE-2018-1002153
  527. - Ensure the project's description does not contain any javascript (Michael
  528. Scherer)
  529. - Prevent the project's URL to be anything other than an URL
  530. - Escape any html people may have injected in their author name in commits
  531. (Michael Scherer)
  532. - Do not serve SVG inline (Michael Scherer)
  533. - The four items above constitute CVE-2018-1002155
  534. - Catch exception raised by pagure-ci when it fails to find a build on jenkins
  535. - Fix RELATES and FIXES regex to cover projects with a dash in their name
  536. - Support calls from jenkins indicating the build is started
  537. - Ensure we check the required group membership when giving a project away
  538. - Add missing titles to the milestones table in the settings
  539. - Properly inform the user if they are introducing a duplicated tag
  540. - Only select the default template when creating a new ticket
  541. - Fix the subscribe button on the PR page
  542. - Fix updating a remote PR
  543. - Fix showing the 'more' button on the overview page
  544. - Multiple fixes to the pagure-milter
  545. - Fix triggering CI checks on new comments added to a PR
  546. - Fix logging and the SMTPHandler
  547. - Do not notify everyone about private tickets (CVE-2018-1002157)
  548. - Make the settings of a project private (CVE-2018-1002156)
  549. - Ensure the git repo of private projects aren't exposed via https
  550. (CVE-2018-1002153)
  551. - Do not log activity on private projects
  552. - Drop trollius-redis requirement (Neal Gompa)
  553. 4.0.3 (2018-05-14)
  554. ------------------
  555. - Backport utility method from the 4.1 code to fix the 4.0.2 release
  556. 4.0.2 (2018-05-14)
  557. ------------------
  558. .. note:: This release fixes CVE-2018-1002151
  559. - Fix showing the list of issues in a timely fashion (Patrick Uiterwijk)
  560. - Fix stats for commits without author (Lubomír Sedlář)
  561. - Explain how to fetch a pull request locally and some grammar fixes
  562. (Todd Zullinger)
  563. - Drop the constraint on the requirement on straight.plugin but document it
  564. - Fix the requirement on bcrypt, it's optional
  565. - Make API endpoint for creating new git branch have its own ACL
  566. fixes CVE-2018-1002151
  567. 4.0.1 (2018-04-26)
  568. ------------------
  569. - Fix browsing projects in a namespace when logged in and the instance has only
  570. one contributor for every projects
  571. - Fix commenting on a PR or an issue if the event source server is not
  572. configured at all (Slavek Kabrda)
  573. 4.0 (2018-04-26)
  574. ----------------
  575. - Re-architecture the project to allow potentially extending pagure outside of
  576. its core
  577. - Fix running the tests on newer pygit
  578. - Add a space between the fork and the watch buttons
  579. - Add a global configuration option to turn on or off fedmsg notifications for
  580. the entire pagure instance
  581. - Set the default username to be 'Pagure' when sending git commit notifications
  582. by email
  583. - Add project setting to show roadmap by default (Vivek Anand)
  584. - Explain in the doc where the doc is coming from
  585. - Expand and document the tokenization search
  586. - Add document that multiple keys are supported
  587. - Add a way to block non fast-forwardable commits on all branches
  588. - Fix running pagure on docker for development (Clément Verna)
  589. - Make the accordeon in the settings page work correctly
  590. - Allow calling git blame on a commit instead of a branch
  591. - Exclude the .pyc files from all folders
  592. - Fix viewing file if the identifier provider is a commit hash
  593. - Make pagure-ci use python-jenkins to work with newer Jenkins
  594. - Fix the link to the pull-request shown by the default git hook
  595. - If the tag's color is the default text, convert it to the hex value
  596. - Include documentation on how to pull locally a pull-request on the PR page
  597. - Properly retrieve the number of projects and forks users have
  598. - Replace jquery.dotdotdot by jquery.expander
  599. - Update the Preview button to display 'Edit' when previewing
  600. - Fix supporting <link> in markdown as it is supposed to be
  601. - Add missing authentication provider option to documentation (Michael Watters)
  602. - Fix couple of places where fullname is required while it's not
  603. - Let users see and access private tickets they are assigned to
  604. - Fix allowing to add multiple tags with the same color
  605. - Add a new API endpoint allowing to open new pull-requests
  606. - Fix checking if the user is authenticated
  607. - Add the possibility to mark milestones as active or inactive
  608. - Fix making the milestones showing in the correct order on the issue page
  609. - Fix showing the proper URLs in the repo overview
  610. - Include the cached merge status in the JSON representation of pull-requests
  611. - Improve the fedmsg git hook documentation
  612. - Fix display of deleted parent on index page (Lubomír Sedlář)
  613. - Adjust message shown to the user deleting a tag off a project
  614. - Fix redirecting the user when they remove themselves from a project
  615. - Add an option to notify on flags being added to a pull-request
  616. - Add an option to notify on flags being added to a commit
  617. - Document project intra-pagure hyperlinks
  618. - Refresh the PR cache of the parent repo rather than always the current one
  619. - Move the webhook service to be a celery service
  620. - Fix dead-link due to documentation for python-markdown being moved
  621. - Mention #pagure IRC channel in Contributing docs (Peter Oliver)
  622. - Fix editing and deleting comments added by the EV server to PRs
  623. - Include a count of the number of tickets shown vs recorded for each milestone
  624. - Do not try to get the avatar if the author has no email
  625. - Fix HTML on settings page
  626. - Migrate the logcom service to be celery based and triggered
  627. - Link directly to API key settings in error message about expired API key
  628. (Peter Oliver)
  629. - Drop the constraint on binaryornot
  630. - Make fork page header link consistent (Lubomír Sedlář)
  631. - Fix the rtd hook and port it to the v2 API (Clément Verna, Pierre-Yves Chibon)
  632. - Deduplicate list of contributors to a project (Lubomír Sedlář)
  633. - Remove repo from gitolite cache when it gets deleted (Slavek Kabrda)
  634. - Make the hooks use the new architecture (Clément Verna)
  635. - Switch to comments on PR page when url fragment is reset (Lubomír Sedlář)
  636. - Handle implicit issue link at start of line (Adam Williamson)
  637. - Don't treat @ in the middle of words as a mention (Adam Williamson)
  638. - Improve the CI settings docs (Clément Verna)
  639. - Ensure the tasks has finished before checking its results
  640. - Fix oidc logout with admin_session_timedout (Slavek Kabrda)
  641. - Make images be lazy loaded via javascript
  642. - Adjust activity heatmap and logs for timezone (Adam Williamson)
  643. - Use timezone not offset for user activity, fix heat map (Adam Williamson)
  644. - JS clean up (Lubomír Sedlář)
  645. - Fix UnicodeEncode on entering non-ascii password (Farhaan Bukhsh)
  646. - Add Tests and exception for non-unicode password (Farhaan Bukhsh)
  647. - Forbid adding tags with a slash in their name to a project
  648. - Migrate the loadjson service to be celery-based
  649. - Specify which service is logging the action for easier debugging/reading of
  650. the logs
  651. - Merge the fedmsg notifications on commit logic into the default hook
  652. - Merge pagure-ci into the pagure's celery-based services
  653. - When creating a new PR, allow updating the branch from
  654. - Allow pull changes from a different repo than the parent one
  655. - Add a new internal endpoint to get the family of a project
  656. - Expand the API endpoint listing tags to include the hash if asked t
  657. - List the tags of the project in the list of commits
  658. - Fix sending notifications in the default hook
  659. - Make it possible to use custom PR/commit flags based on instance configuration
  660. (Slavek Kabrda)
  661. - Show summary of flags on page with commits list (Slavek Kabrda)
  662. - Improve the info message when trying to setup an user with a known email
  663. - Make badges with flag counts in commits list to links to commit details
  664. (Slavek Kabrda)
  665. - Enable sending messages to stomp-compliant brokers (Slavek Kabrda)
  666. - Update required pygit2 version (Clément Verna)
  667. - Do not crash when getting the branches ready for PR on a fork with no parent
  668. - Adjust tests for newer flask
  669. - Make trigger CI build depends on project name (Clément Verna)
  670. - Ensure the DOCS_FOLDER and TICKETS_FOLDER really are optional
  671. - Move the `Add Milestone` button near the top and fix the layout
  672. - Add a button to delete empty line when adding new tags
  673. - Change submit button labels for issues and PRs (Akshay Gaikwad)
  674. - Add changelog.rst (Akshay Gaikwad)
  675. - Overflow heatmap automatically (Paul W. Frields)
  676. - Large unit-tests improvement both in quality and speed (Aurélien Bompard)
  677. - Initial support for commit CI trigger (Clément Verna)
  678. - Added signed-off-by during web ui commit (yadneshk)
  679. - Replace py-bcrypt by python2-bcrypt (Clément Verna)
  680. - Fix the user's requests page
  681. - Establish an order for readme files (Karsten Hopp)
  682. - Include the filename when showing the diff of remote PRs
  683. - Specify the parent repo, even when creating a remote PR
  684. - Always use md5 to get ssh key information (Patrick Uiterwijk)
  685. - Support showing comment submitted by ajax when the SSE is down/not set
  686. - Add the possibility to link issues to pull-requests (in the UI)
  687. - Rely on the list of branches rather than the ``.empty`` attribute to find out
  688. if a git repo is empty or not
  689. - Add the possibility to split the tasks into multiple queues
  690. - Fix getting the patch of a PR that no longer has a project from
  691. - Do not update the CHECKSUMS file if the file was already uploaded
  692. - Show the fork button on forks
  693. - Make the web-hook field be a textarea and improve the documentation about
  694. web-hook
  695. - Fix supporting branches containing multiple dots
  696. - Do not convert to markdown commit messages in notifications
  697. - Port pagure to use the compile-1 script from upstream gitolite (if
  698. configured to do so) (Slavek Kabrda)
  699. - Add preview when editing a comment (Rahul Bajaj) and the initial comment
  700. - Ensure that deployment keys are managed correctly (Michael Watters)
  701. - Improve human-readable date/time display in web UI (Adam Williamson)
  702. - Make sure we rollback session on task failures (Slavek Kabrda)
  703. - Fix new commit notification mails with non-ASCII (#1814) (Adam Williamson)
  704. - Don't create gitolite.conf entries for docs and tickets when they're disabled (Slavek Kabrda)
  705. - Move source git urls above contibutors list (yadneshk)
  706. - Fix private repo to be accessed by ACLs other than admin (Farhaan Bukhsh)
  707. - Change the lock name based on the git repo touched (Pierre-Yves Chibon)
  708. - Adjust the spec file, remove no longer needed lines and fix requirements (Pierre-Yves Chibon)
  709. - Add example worker systemd service file (Pierre-Yves Chibon)
  710. - Adjust the wsgi file for the new arch (Pierre-Yves Chibon)
  711. - Fix turning the read-only boolean on a fork (Pierre-Yves Chibon)
  712. - Support blaming a file is the identifier is a tag (Pierre-Yves Chibon)
  713. - Ensure the git hooks are always executable in the rpm (Pierre-Yves Chibon)
  714. - Do not syntax highlight 'huge' files (Patrick Uiterwijk)
  715. - Fix exceptions caused by missing merge object (Michael Watters)
  716. - Fix linking to a PR that was opened from a main project to a fork (Pierre-Yves
  717. Chibon)
  718. - Add support for repository templates for sources and forks (Pierre-Yves
  719. Chibon)
  720. - Enable usage of flask-session extension (Slavek Kabrda)
  721. - Add a configuration key allowing to send fedmsg notifications on all commits
  722. (Pierre-Yves Chibon)
  723. - Allow deleting branch when PR is merged (Lubomír Sedlář)
  724. 3.13.2 (2017-12-21)
  725. -------------------
  726. - Fix ordering issues by author using an alias so the User doesn't collide
  727. 3.13.1 (2017-12-19)
  728. -------------------
  729. - Add an alembic migration removing a constraint on the DB that not only no
  730. longer needed but even blocking regular use now
  731. 3.13 (2017-12-18)
  732. -----------------
  733. - Fix the alembic migration adjusting the pull_requests table
  734. - Fix how is created the db in the docker development environment (Clement
  735. Verna)
  736. - Ensure optional dependencies remain optional
  737. - Ensure groups cannot be created when it is not allowed
  738. - When listing issues, include the project as well in the user's issue API
  739. endpoint
  740. - Sort forks by date of creation (descending) (Neha Kandpal)
  741. - Ensure the pagination arguments are returned when a page is specified
  742. - Make the milestone clickable on the issue page
  743. - Make the celery tasks update their status so we know when they are running (vs
  744. pending)
  745. 3.12 (2017-12-08)
  746. -----------------
  747. - Adjust the API endpoint listing project to not return a 404 when not projects
  748. are found (Vivek Anand)
  749. - Remove --autoreload from the docker dev deployment (Vivek Anand)
  750. - Fix ordering issues (Patrick Uiterwijk)
  751. - Do not log actions pertaining to private issues, PRs or projects
  752. - Fix flagging a PR when no uid is specified
  753. - Fix the doc about custom gitolite config
  754. - Fix displaying the filename on the side and linking to file for remote PRs
  755. - Add irc info in Readme (Vivek Anand)
  756. - Make pagure compatible with newer python chardet
  757. - Check that the identifier isn't the hash of a git tree in view_file
  758. - Fix if the identifier provided is one of a blob instead of a commit in
  759. view_commit
  760. - Include the status when flagging a PR via jenkins
  761. - Enable OpenID Connect authentication (Slavek Kabrda)
  762. - Use the updated timestamp in the pull-request list
  763. - Add migration to fix the project_from_id foreign key in pull_requests
  764. - Let the SSE server to send the notifications so they can be displayed live
  765. - Improve the createdb script to support stamping the database in the initial
  766. run
  767. - Specify a different connection and read timeout in pagure-ci
  768. - Small CSS fix making the (un)subscribe show up on the PR page
  769. 3.11.2 (2017-11-29)
  770. -------------------
  771. - Fix giving a project if no user is specified
  772. - Don't show issue stats when issues are off
  773. 3.11.1 (2017-11-28)
  774. -------------------
  775. - Fix showing the issue list
  776. - Make clear in the project's settings that tags are also for PRs (Clement
  777. Verna)
  778. - Remove unused jdenticon js library (Shengjing Zhu)
  779. 3.11 (2017-11-27)
  780. -----------------
  781. - Print out the URL to existing PR(s) or to create one on push
  782. - Reword the repository access warning (Matt Prahl)
  783. - Add pagure-admin admin-token update to update the expiration date
  784. - Fix the api_view_user_activity_stats to return the expected data (post flask
  785. 0.11)
  786. - Add small icon showing if issues are blocked or blocking in the issue list
  787. - Replace all print statements with print function calls (Vadim Rutkovski)
  788. - Add a default_priority field to projects
  789. - Bail on merge a PR that is already closed
  790. - Add a graph of the history of the open issues on the project
  791. - Make the pagure hook act as the person doing the push
  792. - Clean spec file to drop deprecated lines and macros (Igor Gnatenko)
  793. - Include selectize in the settings page to fix the autocomplete in the give
  794. project action
  795. - Do not display the close_status if there isn't one
  796. - Do not show the `Fork and edit` button all the time
  797. - Allow project maintainer to set metadata when creating a new issue (expand the
  798. API as well)
  799. - Add a timeout when trying to query jenkins
  800. - Show the reply button even if the PR/issue is closed.
  801. - Add a diff view for PR
  802. - Improve the `My star` page
  803. - Introduce repo statistics
  804. - When a project enforce signed-off-by, clearly say so on the new PR page and
  805. properly block the PR from being created
  806. - Adjust button title on the 'Fork and Edit' action
  807. - Fix typos in the code (chocos10)
  808. - When editing an issue, act as the person who pushed the change
  809. - Commit using the user's fullname if there is one, otherwise its username
  810. - Expand the group info API endpoint
  811. - Sorting on Opened, Modified, Closed, Priority, Reporter, Assignee cols (Mohan
  812. Boddu and Matt Prahl)
  813. - Fix the Vagrant setup (Ryan Lerch)
  814. - Fix typo in the example pagure.wsgi file (Vivek Anand)
  815. - Add API endpoints for listing pull requests for a user (Ryan Lerch)
  816. - Ask for the post-commit hook to be run when editing files via the UI
  817. - Fix the milter for email gpg signed
  818. - Allow filtering the user's project by access level
  819. - Add a modal at the bottom of the issues list to add milestones
  820. - Add a field to store the order of the milestones
  821. - Hide the ``+`` button on the index page when it is disabled in the UI
  822. - Improve mimetype detection (Shengjing Zhu and Clement Verna)
  823. - Allow assignee to drop their assignment
  824. - Remove duplicate [Pagure] from mail subjects (Stefan Bühler)
  825. - Fix undefined 'path' in blame.html template (Stefan Bühler)
  826. - Warn users when a project does not support direct push
  827. - Update gitolite's config for the project when set to PR only
  828. - Do not report the branch differing master if PRs have been turned off
  829. - Add a button and an API endpoint to subscribe to PR's notifications
  830. - Fix showing the file names in PR (pre)view
  831. - Fix number of typos in the documentation (René Genz)
  832. - Improve the documentation about documentation hosting in pagure (René Genz)
  833. - Allow priorities and milestones to be 0 or -1
  834. - Return the flag UID when adding or updating a flag on a PR not in fedmsg
  835. - Add flags on commits
  836. - Add documentation about flags on commits and PRs
  837. - Add status fields to flags
  838. - Make flag's UID be unique to the commit/PR being flagged
  839. - Add API endpoint to retrieve all issues related to an user across all repos
  840. - Fix the new PR and delete buttons for branch name with + in them
  841. - When merging a PR, call the post-update hook on the target repo
  842. - Add tags to pull-request
  843. - Fix documentation for fork API endpoint (ishcherb)
  844. - Send fedmsg messages when deleting a project (Shaily)
  845. 3.10.1 (2017-10-13)
  846. -------------------
  847. - Fix providing access to some of the internal API endpoints by javascript
  848. 3.10 (2017-10-13)
  849. -----------------
  850. - Show the branches' head in the commit list
  851. - Log which IP is being denied access to the internal endpoints (makes debugging
  852. easier)
  853. - Link to pagure's own markdown documentation and warn that remote images are
  854. not supported
  855. - Document how to run a single test file or a single test in a file
  856. - Fix trying to decode when the encoding is None
  857. - Include an url_path field in the JSON representation of a project
  858. - Generalize the description of the ACLs (since we know have project-less API
  859. tokens)
  860. - Drop ``--autoreload`` from the .service files as celery dropped support for it
  861. and it never really worked (Vivek Anand)
  862. 3.9 (2017-10-11)
  863. ----------------
  864. - Fix the editing issue when the user does not actually edit anything
  865. - Fix the internal API endpoint: get branches of commit to support namespace
  866. - Consolidate the code in our custom markdown processor (fixes linking to a
  867. commit on a namespaced project)
  868. - Fix deleting a project by also removing it from the gitolite config
  869. - Warn if the user is about to just recompile the gitolite config via
  870. pagure-admin (Patrick Uiterwijk)
  871. - Update .git/config example in doc/usage/pull_requests.rst (sclark)
  872. - Include the PRs opened by the user on the 'My pull-requests' page
  873. - Add to pagure-admin the actions: get-watch and update-watch
  874. - Add to pagure-admin the action: read-only
  875. - Add the user's fullname (if there is one) as title when they comment
  876. - Fix the title of the percentage when hovering over the red bar in issues
  877. - Make the box to edit comments bigger
  878. - Document in the usage section where to find the API documentation
  879. - Provide the sha256 and sha512 of the releases in a CHECKSUMS file
  880. - Remove clear buttons (Till Maas)
  881. 3.8 (2017-09-29)
  882. ----------------
  883. - Fix API documentation for git/branch (Matt Prahl)
  884. - Fix giving a project to someone who already has access (Matth Prahl)
  885. - Add some border to the tables created in README files
  886. - Ask the user to confirm merging a pull-request
  887. - Fix processing status and close_status updates in the SSE
  888. - Fix the URL to the issue used by the SSE JS on tags
  889. - Increase the logging in the milter to help figuring out issues in the future
  890. - Fix the In-Reply-To header when sending notifications
  891. - Fix showing the delete project button
  892. - Fix search issues with a unicode character
  893. - Catch exception raised when accessing the head of the repo
  894. - Fix deleting a project when some of the folder are not used
  895. - Allow viewing a PR when its origin (fork or branch) is gone
  896. - Fix linking to issue or PR in namespaced projects via #<id>
  897. - Make it more obvious that the namespace and the project are different links
  898. - Tell fedmsg to send things with pagure certificates (Patrick Uiterwijk)
  899. - Fix loading ticket templates on namespaced project and extracting their names
  900. - Add a banner on the overview page when the ACLs are being refreshed on the
  901. backend (and thus ssh access may not be entirely functional) (Vivek Anand)
  902. - Update the documentation on how to create pull requests (Clement Verna)
  903. - Add button to refresh external pull requests (Patrick Uiterwijk)
  904. - Add the possibility to get the group members when asking the project info
  905. - Make the PROJECT_NAME_REGEX used in form be configurable
  906. - Adjust the milter to support replying with any email addresses associated
  907. - Allow pagure admin to give a project
  908. 3.7.1 (2017-09-05)
  909. ------------------
  910. - Fix the UPGRADING documentation
  911. - Add the API endpoint to edit multiple custom fields to the doc (Clement
  912. Verna)
  913. 3.7 (2017-09-05)
  914. ----------------
  915. - Update link to markdown documentation, fix typo on the way (Till Hofmann)
  916. - Add feature allowing to prevent project creation in the UI only
  917. - Remove the front whitespace from the commit markdown regex (Clement Verna)
  918. - New API endpoint to modify multiple custom fields (Clement Verna)
  919. - Update the example output of the API endpoint giving project information
  920. - Add the ability to order issues by ascending or descending (Matt Prahl)
  921. - Consolidate around pagure.lib.git.generate_gitolite_acls
  922. - Regenerate the gitolite ACL when changing the main admin of a project
  923. - Change the documentation link end point (Clement Verna)
  924. - Fixes the README.rst file (Ompragash)
  925. - Update Docker Environment (Clement Verna)
  926. - Add a configuration key to allow deleting forks but not projects
  927. - Show the entire project name in the UI on the delete button
  928. - Add support for a custom user in the SSH URL
  929. - Do not show the SSH url when the user isn't logged in
  930. - Update the documentation on how to work with pull requests (Clement Verna)
  931. - Support both JSON and Form POST on APIs that accepted only JSON (Matt Prahl)
  932. - Don't expand groups in the watchers API (Ralph Bean)
  933. - Add a new branch API (Matt Prahl)
  934. - Add bash function example to PR documentation (Clement Verna)
  935. - Add the star project feature (Vivek Anand)
  936. - Update the overview diagram
  937. - Fix the rendering of the API version in the html page (Clement Verna)
  938. - Fix message-id not having FQDN (Sachin Kamath)
  939. - Mention on what the rebase was done
  940. - Remove the line numbers coming from pygments on pull-requests
  941. - Include the targeted branch in the list of PRs
  942. - Separately link user/namespace/name
  943. - Fix the pagination when listing projects via the view_projects endpoints
  944. - Retain access when transferring ownership of the project (Matt Prahl)
  945. 3.6 (2017-08-14)
  946. ----------------
  947. - Blacklist creating a group named 'group'
  948. - Allow having a dedicated worker to compile the gitolite configuration file
  949. - Fix removing groups of a project
  950. - Make the API returns only open issues by default (as documented) (Clement
  951. Verna)
  952. - Improve the README regarding the use of eventlet to run the tests (Vivek
  953. Anand)
  954. - Give Pagure site admins the ability to modify projects using the API (Matt
  955. Prahl)
  956. - Add the "git/generateacls" API endpoint for projects (Matt Prahl)
  957. 3.5 (2017-08-08)
  958. ----------------
  959. - Fix login when groups are managed outside
  960. - Fix the ordering of the issues by priority using JS and its documentation
  961. - Indicate the issue/PR status in the title of its link
  962. - Correct typo in waiting page template: 'You task' -> 'Your task' (Hazel Smith)
  963. - Fix redirect in search (Carl George)
  964. - Fix removing users of a project
  965. - Allow customizing the HTML title globally
  966. - Drop the new line character and the '# end of body' message when loading the
  967. config
  968. - Scroll to the comment section on clicking reply. (shivani)
  969. - only show issues on the My Issue page if the issue tracker is on for the
  970. project (Vivek Anand)
  971. - Update the refresh-gitolite action of pagure-admin for the new interface
  972. (turns out this wasn't in fact merged in 3.4)
  973. - Add a configuration key to make pagure case sensitive
  974. - Add an USER_ACLS configuration key
  975. - Document the different API token ACLs configuration keys
  976. - Fix syncing groups from external account sources (Patrick Uiterwijk)
  977. 3.4 (2017-07-31)
  978. ----------------
  979. - Fix layout breakage in the doc
  980. - Stop using readlines() to drop the trailing new line character
  981. - Fix logging by properly formatting the message
  982. - Fix the issue count in the My Issues page (Vivek Anand)
  983. - Add a configuration key to disable deleting branches from the UI
  984. - Add a configuration key to disable managing user's ssh key in pagure
  985. - Fix the vagrant environment (Clement Verna)
  986. - Fix branch support for the git blame view
  987. - Update the PR ref when the PR is updated
  988. - Add a configuration key to disable the deploy keys in a pagure instance
  989. - Fix login when groups are managed outside of pagure
  990. - Fix setting up the git hooks when there is no DOCS_FOLDER set
  991. - Fix installing up the pagure hooks when there is no DOCS_FOLDER set
  992. 3.3.1 (2017-07-24)
  993. ------------------
  994. - Fix typo in the alembic migration present in 3.3
  995. 3.3 (2017-07-24)
  996. ----------------
  997. - [SECURITY FIX] block private repo (read) access via ssh due to a bug on how we
  998. generated the gitolite config - CVE-2017-1002151 (Stefan Bühler)
  999. - Add the date_modified to projects (Clement Verna)
  1000. 3.2.1 (2017-07-14)
  1001. ------------------
  1002. - Fix a syntax error on the JS in the wait page
  1003. 3.2 (2017-07-14)
  1004. ----------------
  1005. - Use a decorator to check if a project has an issue tracker (Clement Verna)
  1006. - Optimize generating the gitolite configuration for group change
  1007. - Fix the issue_keys table for mysql
  1008. - Drop the load_from_disk script
  1009. - Fix next_url URL parameter on the login page not being used (Carlos Mogas da
  1010. Silva)
  1011. - Support configuration where there are no docs folder and no tickets folder
  1012. - Show all the projects a group has access to
  1013. - Add pagination to the projects API (Matt Prahl)
  1014. - Simplify diff calculation (Carlos Mogas da Silva)
  1015. - Show the inline comment in the PR's comments by default (Clement Verna)
  1016. - Fix the URL in the API documentation for creating a new project (Matt Prahl)
  1017. 3.1 (2017-07-04)
  1018. ----------------
  1019. - Allow project-less API token to create new tickets
  1020. - Tips/tricks: add info on how to validate local user account without email
  1021. verification (Vivek Anand)
  1022. - Optimize the generation of the gitolite configuration
  1023. - Improve logging and load only the plugin of interest instead of all of them
  1024. - Show the task's status on the wait page and avoid reloading the page
  1025. - Don't show '+' sign when GROUP_MNGT is off (Vivek Anand)
  1026. 3.0 (2017-06-30)
  1027. ----------------
  1028. - Since 2.90 celery has become a requirement as well as one of the queueing
  1029. system it supports (pagure defaults to using redis)
  1030. - Multiple stability and performance improvements (mainly thanks to Patrick
  1031. Uiterwijk)
  1032. - Fix the assignee value in fedmsg when assigning a ticket (Ricky Elrod)
  1033. - Make pagure support bleach 2.0.0 (Shengjing Zhu)
  1034. - Fixes in CI support (Tim Flink)
  1035. - Update the documentation
  1036. - Fix plain readme html escape (Shengjing Zhu)
  1037. - Refactor user existence code in API and UI (Abhijeet Kasurde)
  1038. - Add an API to modify a Pagure project's owner (Matt Prahl)
  1039. - Support for uploading multiple files to an issue at once
  1040. - Introduce the external committer feature
  1041. - Add the required groups feature
  1042. - Add an API endpoint to get the git urls of a project (Matt Prahl)
  1043. - Blacklist 'wait' as project name
  1044. - Add a border to the search box on the side bar to the documentation
  1045. - Add the list-id, list-archive and X-Auto-Response-Suppress email headers
  1046. - Add ways to customize the gitolite configuration file with snippets
  1047. - Return a 404 on private ticket if the user is not authenticated
  1048. - cleanup: move static js/css to vendor dir
  1049. - Limit the requests version as it conflicts with our chardet requirement
  1050. - Rename all the services to pagure-*
  1051. - Remove 'on <project name' - watch status dropdown (Vivek Anand)
  1052. - Create references for pull-request in the git repo for local checkout
  1053. - Use the entire list of users for the assignee field completion
  1054. - Fix searching for groups
  1055. - Make the search work when searching for project with namespaces or forks
  1056. - Return a human-friendly error message when upload fails
  1057. - Let acting on the status potentially set the close_status and vice versa
  1058. - Multiple fixes to the SSE server
  1059. - When forking a project, wait until the very end to let the user go through
  1060. - Allow customizing the writing of gitolite's configuration file
  1061. - Fix diffing the branch of a project against the target branch
  1062. - Fix displaying the new PR button on the default branch
  1063. - Do not send a notification upon merge conflicts
  1064. - Do not let pagure return 500 when hit with bogus URL
  1065. - When loading comment from JSON rely on username/comment rather than comment id
  1066. - When deleting a comment, refresh the ticket git repo
  1067. - Make patch_to_diff use lists instead of string concatenation (Patrick
  1068. Uiterwijk)
  1069. 2.90.1 (2017-07-24)
  1070. -------------------
  1071. - Fix the systemd service file for the worker, needs to have the full path
  1072. (Patrick Uiterwijk and I)
  1073. - Fix the logcom server (Patrick Uiterwijk)
  1074. - Use python-redis instead of trollius-redis to correctly clean up when client
  1075. leaves on the EV server (Patrick Uiterwijk)
  1076. 2.90.0 (2017-05-23)
  1077. -------------------
  1078. - Re-architecture the interactions with git (especially the writing part) to be
  1079. handled by an async worker (Patrick Uiterwijk)
  1080. - Add the ability to filter projects by owner (Matt Prahl)
  1081. 2.15.1 (2017-05-18)
  1082. -------------------
  1083. - Fix the requirements on straight.plugin in the requirements.txt file
  1084. (Shengjing Zhu)
  1085. - Fix typo in the fedmsg hook so it finds the function where it actually is
  1086. - Fix and increase the logging when merging a PR
  1087. - Fix pushing a merge commit to the original repo
  1088. - Use psutil's Process() instead of looping through all processes (Patrick
  1089. Uiterwijk)
  1090. - Don't email admins for each PR conflicting
  1091. - Fix/improve our new locking mechanism (Patrick Uiterwijk)
  1092. - Drop making the token required at the database level since pagure-ci doesn't
  1093. use one (but do flag pull-requests)
  1094. - Fix the watch feature (Matt Prahl)
  1095. 2.15 (2017-05-16)
  1096. -----------------
  1097. - Improve logic in api/issue.py to reduce code duplication (Martin Basti)
  1098. - Fix the download button for attachment (Mark Reynolds)
  1099. - Fix our markdown processor for strikethrough
  1100. - Add a spinner indicating when we are retrieving the list of branches differing
  1101. - Make add_file_to_git use a lock as we do for our other git repositories
  1102. - Add the opportunity to enforce a PR-based workflow
  1103. - Store in the DB the API token used to flag a pull-request
  1104. - Allow people with ticket access to take and drop issues
  1105. - Display the users and groups tied to the repo in the API (Matt Prahl)
  1106. - Document our markdown in rest so it shows up in our documentation
  1107. - Fix comparing the minimal version of flask-wtf required
  1108. - Allow the td and th tags to have an align attribute to allow align in html
  1109. tables via markdown
  1110. - Avoid binaryornot 0.4.3 and chardet 3.0.0 for the time being
  1111. - Add group information API that shows group members (Matt Prahl)
  1112. - Ensure people with ticket metadata can edit the custom fields
  1113. - Add support to create private projects (Farhaan Bukhsh) - Off by default
  1114. - Link to the doc when the documentation is activated but has no content
  1115. - Enforce project wide flake8 compliance in the tests
  1116. - Enforce a linear alembic history in the tests
  1117. - Increase logging in pagure.lib.git
  1118. - Use custom logger on all module so we can configure finely the logging
  1119. - Multiple improvements to the documentation (René Genz)
  1120. - Add the ability to query projects by a namespace in the API (Matt Prahl)
  1121. - Add the /<repo>/git/branches API endpoint (Matt Prahl)
  1122. - Lock the git repo when removing elements from it
  1123. - Always remove the lockfile after using it, just check if it is still present
  1124. - Implement the `Give Repo` feature
  1125. - Allow project-less token to change the status of an issue in the API
  1126. - Make the watch feature more granular (Matt Prahl): you can now watch tickets,
  1127. commits, both, neither or go back to the default
  1128. - Bring the pagure.lib coverage to 100% in the tests (which results to bug fixes
  1129. in the code)
  1130. - Add locking at the project level using SQL rather than filelock at the git
  1131. repo level
  1132. 2.14.2 (2017-03-29)
  1133. -------------------
  1134. - Fix a bug in the logic around diff branches in repos
  1135. 2.14.1 (2017-03-29)
  1136. -------------------
  1137. - Fix typo for walking the repo when creating a diff of a PR
  1138. - Have the web-hook use the signed content and have a content-type header
  1139. - Fix running the tests on jenkins via a couple of fixes to pagure-admin and
  1140. skipping a couple of tests on jenkins due to the current pygit2/libgit2
  1141. situation in epel7
  1142. 2.14 (2017-03-27)
  1143. -----------------
  1144. - Update the label of the button to comment on a PR (Abhijeet Kasurde)
  1145. - Make search case insensitive (Vivek Anand)
  1146. - Improve the debugging on pagure_loadjson
  1147. - Only link the diff to the file if the PR is local and not remote
  1148. - Do not log on fedmsg edition to private comment
  1149. - When deleting a project, give the fullname in the confirmation window
  1150. - Add link to the FPCA indicating where to sign it when complaining that the
  1151. user did not sign it (Charelle Collett)
  1152. - Fix the error: 'Project' object has no attribute 'ci_hook'
  1153. - Fix input text height to match to button (Abhijeet Kasurde)
  1154. - Fix the data model to make deleting a project straight forward
  1155. - Fix searching issues in the right project by including the namespace
  1156. - When creating the pull-request, save the commit_start and commit_stop
  1157. - Ensure there is a date before trying to humanize it
  1158. - Fixing showing tags even when some of them are not formatted as expected
  1159. - Allow repo user to Take/Drop assignment of issue (Vivek Anand)
  1160. - Add merge status column in pull requests page (Abhijeet Kasurde)
  1161. - Allow user with ticket access to edit custom fields, metadata and the privacy
  1162. flag (Vivek Anand)
  1163. - Add number of issues in my issues page (Abhijeet Kasurde)
  1164. - Allow report to filter for a key multiple times
  1165. - Add the support to delete a report in a project
  1166. - Fix rendering the roadmap when there are tickets closed without a close date
  1167. - Fix to show tabs in pull request page on mobile (Abhijeet Kasurde)
  1168. - Document some existing API endpoints that were missing from the doc
  1169. - Make issues and pull-requests tables behave in responsive way (Abhijeet Kasurde)
  1170. - Add option to custom field for email notification (Mark Reynolds)
  1171. - When resetting the value of a custom field, indicate what the old value was
  1172. - Add instance wide API token
  1173. - Move the admin functions out of the UI and into a CLI tool pagure-admin
  1174. - Do not update the hash in the URL for every tabs on the PR page
  1175. - Fix heatmap to show current datetime not when when object was created (Smit
  1176. Thakkar and Vivek Anand)
  1177. - Do not include watchers in the subscribers of a private issue
  1178. - Do not highlight code block unless a language is specified
  1179. - Make getting a project be case insensitive
  1180. - Do not change the privacy status of an issue unless one is specified
  1181. - Fix the logic of the `since` keyword in the API (Vivek Anand)
  1182. - Fix the logic around ticket dependencies
  1183. - Add reset watch button making it go back to the default (Vivek Anand)
  1184. - Do not show dates that are None object, instead make them empty strings
  1185. - Allow filtering tickets by milestones in the API
  1186. - Allow filtering tickets by priorities in the API
  1187. - Expand the API to support filtering issues having or not having a milestone
  1188. - Use plural form for SSH key textfield (Martin Basti)
  1189. - Support irc:// links in our markdown and adjust the regex
  1190. - Remove backticks from email subject (Martin Basti)
  1191. - Adjust the logic when filtering issues by priorities in the API
  1192. - Remove mentioning if a commit is in master on the front page
  1193. - Optimize finding out which branches are in a PR or can be
  1194. - Add required asterisk to Description on new issues (Abhijeet Kasurde)
  1195. - Fix misc typo in 404 messages (Abhijeet Kasurde)
  1196. - Add performance git repo analyzer/framework (Patrick Uiterwijk)
  1197. - Added tip_tricks in doc to document how to pre-fill issues using the url
  1198. (Eashan)
  1199. - Document how to filter out for issues having a certain tag in the tips and
  1200. tricks section
  1201. - Allow one to manually triggering a run of pagure-ci via a list of sentences set in
  1202. the configuration
  1203. - Add support for admin API token to pagure-admin
  1204. - Make clicking on 'Unassigned' filter the unassigned PR as it does for issues
  1205. - Add Priority column to My Issues page (Abhijeet Kasurde)
  1206. - Optimize diffing pull-requests
  1207. - Add a description to the API tokens
  1208. - Include the fullname in the API output, in the project representation
  1209. - Add the possibility to edit issue milestone in the API (Martin Basti)
  1210. - Fix some wording (Till Maas)
  1211. - Rename "request pull" to pull request (Stanislav Laznicka)
  1212. - Make tags in issue list clickable (Martin Basti)
  1213. - Include the priority name in the notification rather than its level
  1214. - Update the ticket metadata before adding the new comment (if there is one)
  1215. 2.13.2 (2017-02-24)
  1216. -------------------
  1217. - Fix running the test suite due to bugs in the code:
  1218. - Fix picking which markdown extensions are available
  1219. - Fix rendering empty text files
  1220. 2.13.1 (2017-02-24)
  1221. -------------------
  1222. - Add a cancel button on the edit file page (shivani)
  1223. - Fix rendering empty file (Farhan Bukhsh)
  1224. - Fix retrieving the merge status of a pull-request when there is no master
  1225. - On the diff of a pull-request, add link to see that line in the entire file
  1226. (Pradeep CE)
  1227. - Make the pagure_hook_tickets git hook file be executable
  1228. - Be a little more selective about the markdown extensions always activated
  1229. - Do not notify the SSE server on comment added to a ticket via git
  1230. - Fix inline comment not showing on first click in PR page (Pradeep CE)
  1231. 2.13 (2017-02-21)
  1232. -----------------
  1233. - Allow filtering issues for certain custom keys using <key>:<value> in the
  1234. search input (Patric Uiterwijk)
  1235. - Make loading the JSON blob into the database its own async service
  1236. - Add ACLs to pagure (Vivek Anand)
  1237. - Fix running the tests against postgresql
  1238. - Let the doc server return the content as is when it fails to decode it
  1239. - Fix rendering a issue when one of the custom fields has not been properly
  1240. setup (ie a custom field of type list, with no options set-up but still having
  1241. a value for that ticket)
  1242. - Fix auto-completion when adding a tag to a ticket
  1243. - Add the possibility to filter the issues with no milestone assigned (Mark
  1244. Reynolds)
  1245. - Fix the callback URL for jenkins for pagure-ci
  1246. - Backport the equalto test to ensure it works on old jinja2 version (fixes
  1247. accessing the user's PR page)
  1248. 2.12.1 (2017-02-13)
  1249. -------------------
  1250. - Include the build id in the flag set by pagure-ci on PR (Farhaan Bukhsh)
  1251. - Fix using the deploy keys (Patrick Uiterwijk)
  1252. - Add the possibility to ignore existing git repo on disk when creating a new
  1253. project
  1254. - Fix checking for blacklisted projects if they have no namespace
  1255. - Link to the documentation in the footer (Rahul Bajaj)
  1256. - Fix retrieving the list of branches available for pull-request
  1257. - Order the project of a group alphabetically (case-insensitive)
  1258. - Fix listing the priorities always in their right order
  1259. 2.12 (2017-02-10)
  1260. -----------------
  1261. - Fix the place of the search and tags bars in the issues page (Pradeep CE)
  1262. - Support removing all content of a custom field (Patrick Uiterwijk)
  1263. - Improve the `My Pull Requests` page (Pradeep CE)
  1264. - Fix displaying binary files in the documentation
  1265. - Add a way to easily select multiple tags in the issues list and roadmap
  1266. - Allow selecting multiple milestones easily in the UI of the roadmap
  1267. - Fix displaying namespaced docs (Igor Gnatenko)
  1268. - Fix the web-hook server
  1269. - Add a way to view patch attached to a ticket as raw
  1270. - Allow milestone to be set when creating an issue using the API (Mark Reynolds)
  1271. - Fix adding and editing tags to/of a project
  1272. - Make the usage section of the doc be at the top of it (Jeremy Cline)
  1273. - Add notifications to issues for meta-data changes (Mark Reynolds)
  1274. - Fix not updating the private status of an issue when loading it from JSON
  1275. (Vivek Anand)
  1276. - Fix triggering web-hook notifications via the fedmsg hook
  1277. - Add a configuration key allowing to hide some projects that users have access
  1278. to only via these groups
  1279. - Fix figuring out which branches are not merged in namespaced project
  1280. - Automatically link the commits mentioned in a ticket if their hash is 7 chars
  1281. or more
  1282. - Allow dropping all the priorities info of an issue
  1283. - Do not edit multiple times the milestone info when updating a ticket
  1284. - Only update the custom field if there is a value to give it, otherwise remote
  1285. it
  1286. - Make pagure compatible with flask-wtf >= 0.14.0
  1287. - Add a button to test web-hook notifications
  1288. - Fix the layout on the page listing all the closed issues (Rahul Bajaj)
  1289. - Load priorities when refreshing the DB from the ticket git repos (Mark
  1290. Reynolds)
  1291. - Ignore `No Content-Type header in response` error raised by libgit2 on pull
  1292. from repo hosted on github (for remote PR)
  1293. - Add deployment keys (ssh key specific for a single project can be either read
  1294. and write or read-only) (Patrick Uiterwijk)
  1295. - Fix install the logcom service to log commits
  1296. - Fix deleting tickets that have a tag attached
  1297. - Allow pre-filling title and content of an issue via URL arguments:
  1298. ?title=<title>&content=<issue description>
  1299. - Re-initialize the backend git repos if there are no tickets/PRs in the DB
  1300. (Vivek Anand)
  1301. - Fix invalid pagination when listing all the tickets (regardless of their
  1302. status) and then applying some filtering (Vibhor Verma)
  1303. 2.11 (2017-01-20)
  1304. -----------------
  1305. - Fix the forked repo text on the user's PR page (Rahul Bajaj)
  1306. - Display the number of subscribers subscribed to the ticket
  1307. - Add an attachments section to tickets (Mark Reynolds)
  1308. - Small fixes around the git blame feature
  1309. - Add an `Add group` button on page listing the groups (Rahul Bajaj)
  1310. - Move the `My Issues` and `My Pull-requests` links under the user's menu
  1311. - Document the FORK_FOLDER configuration key as deprecated
  1312. - Display the subscribers to PR in the same way to display them on ticket
  1313. - Adjust the wording when showing a merge commit
  1314. - Ensure the last_updated field is always properly updated (Mark Reynolds)
  1315. - Fix decoding files when we present or blame them
  1316. - Disable the markdown extensions nl2br on README files
  1317. - Make issue reports public
  1318. - Only display modified time as the modifying user can not be determined (Mark
  1319. Reynolds)
  1320. - Add a new API endpoint returning information about a specific project
  1321. - Add a button allowing dropping of assignments for an issue easily (Paul W.
  1322. Frields)
  1323. - Make attachments of ticket downloadable (Mark Reynolds)
  1324. - Make patch/diff render nicely when viewed attached to a ticket (Mark Reynolds)
  1325. - Filter out the currrent ticket in the drop-down list for the blocker/depending
  1326. fields (Eric Barbour)
  1327. - Move the logging of the commit as activity to its own service: pagure_logcom
  1328. - Add a new API endpoint to set/reset custom fields on tickets
  1329. - Introduce the USER_NAMESPACE configuration key allowing to put the project on
  1330. the user's namespace by default
  1331. - Fix sending notifications about pull-requests to people watching a project
  1332. - Fix the list of blacklisted projects
  1333. - Inform the user when they try to create a new group using a display name
  1334. already used (Rahul Bajaj)
  1335. - Fix importing the milestones into the project when loading from the git repo
  1336. (Clement Verna)
  1337. - Add a button to create a default set of close status (as we have a default set
  1338. of priorities)
  1339. - Have pagure bail with an error message if the OpenID server did not return an
  1340. username
  1341. - Let the error email use the FROM_EMAIL address set in the configuration file
  1342. - Fix theprogress bar shown when listing issues (Gaurav Kumar)
  1343. - Replace our current tags by colored one (Mark Reynolds)
  1344. - Make the roadmap page use the colored tag (Mark Reynolds)
  1345. - Fix the tag of Open pull-request when listing all the pull-requests (Rahul
  1346. Bajaj)
  1347. - Remove the 'pagure.lib.model.drop_tables' from test/__init__.py file (Amol
  1348. Kahat)
  1349. - Fix the headers of the table listing all the pull-request
  1350. - Raise an exception when a PR was made against a branch that no longer exists
  1351. - Document what to do when pull-requests are not available in a troubleshooting
  1352. section of the documentation
  1353. - Send notification upon closing tickets
  1354. - Fix re-setting the close_status to None it when re-opening a ticket
  1355. - Fix linking to the tabs in the pull-request page (cep)
  1356. - Adjust the rundocserver utility script to have the same arguments as runserver
  1357. - Ensure the filtering by author remains when changing the status filter on PR
  1358. list (Rahul Bajaj)
  1359. - Improve the page/process to create a new API token (Pradeep CE)
  1360. - Prevent re-uploading a file with the same name
  1361. - Improve the roadmap page (Mark Reynolds)
  1362. - Improve the `My Issues` page (Mark Reynolds)
  1363. - Fix home page 'open issues' links for namespaced projects (Adam Williamson)
  1364. - Fix logging who did the action
  1365. - Return a nicer error message to the user when an error occurs with a remote
  1366. pull-request
  1367. - Make interacting with the different git repos a locked process to avoid
  1368. lost/orphan commits
  1369. - Update API doc for api_view_user (Clement Verna)
  1370. - Don't return 404 when viewing empty files (Pradeep CE (cep))
  1371. - Do not automatically update the last_updated or updated_on fields
  1372. - Make alembic use the DB url specified in the configuration file of pagure
  1373. - Only connect to the smtp server if we're going to send an email
  1374. - Add a type list to the custom fields (allows restricting the options) (Mark
  1375. Reynolds)
  1376. - Fix displaying non-ascii milestones
  1377. - Add the possibility to view all the milestones vs only the active ones (Mark
  1378. Reynolds)
  1379. 2.10.1 (2016-12-04)
  1380. -------------------
  1381. - Clean up the JS code in the settings page (Lubomír Sedlář)
  1382. - Fix the URLs in the `My Issues` and `My Pull-request` pages
  1383. 2.10 (2016-12-02)
  1384. -----------------
  1385. - Updating language on not found page (Brian (bex) Exelbierd)
  1386. - Add a view for open pull requests and issues (Jeremy Cline)
  1387. - Issue 1540 - New meta-data custom field type of "link" (Mark Reynolds)
  1388. - Fix overflow issue with comment preview and pre (Ryan Lerch)
  1389. - Issue 1549 - Add "updated_on" to Issues and make it queryable (Mark Reynolds)
  1390. - Drop UPLOAD_FOLDER in favor of UPLOAD_FOLDER_URL
  1391. - Make the group_name be of max 255 characters
  1392. - Bug - Update documentation to match the default EMAIL_SEND value (Michael
  1393. Watters)
  1394. - Change - Fix grammar in UI messages around enabling/deactivating git hooks
  1395. (Michael Watters)
  1396. - Allow resetting the priorities of a project
  1397. - Several fixes and enhancements around the activity calendarheatmap
  1398. - Add quick_replies field to project (Lubomír Sedlář)
  1399. - Fix blaming files containing non-ascii characters (Jeremy Cline and I)
  1400. - Include regular contributors when checking if user is watching a project
  1401. - List subscribers on the issue pages (Mark Renyolds and I)
  1402. 2.9 (2016-11-18)
  1403. ----------------
  1404. - Fix redirecting after updating an issue on a project with namespace (Vivek
  1405. Anand)
  1406. - Remove take button from Closed Issues (Rahul Bajaj)
  1407. - Show the open date/time on issues as we do for PR (Rahul Bajaj)
  1408. - When rendering markdown file use the same code path as when rendering comments
  1409. - Add documentation for using Markdown in Pagure (Justing W. Flory)
  1410. - Fix the behavior of the Cancel button on PR page (Rahul Bajaj)
  1411. - Be tolerant to markdown processing error
  1412. - Let the notifications render correctly when added by the SSE server
  1413. - Fix the URL for pull request on the list of branches of a fork (Rahul Bajaj)
  1414. - Adjust the markdown processor to have 1 regex for all cross-project links
  1415. - Remove unused variables (Farhaan Bukhsh)
  1416. - Hide the title of private tickets when linking to them in markdown
  1417. - Show user activity in pagure on the user's page
  1418. - Add the possibility to subscribe to issues
  1419. - Do not cache the session in pagure-ci (as we did for pagure-webhook)
  1420. - Fix rendering raw file when the sha1 provided is one of a blob
  1421. - Include project's custom fields in the JSON representation of a project
  1422. - Include the issue's custom fields values in the JSON representation of an
  1423. issue
  1424. - Include the list of close_status and the milestones in the JSON of a project
  1425. - Improve documentation related to unit-tests (Rahul Bajaj)
  1426. - Use `project.fullname` in X-Pagure-Project header (Adam Williamson)
  1427. - Figure a way to properly support WTF_CSRF_TIME_LIMIT on older version of
  1428. flask-wtf
  1429. - When updating an issue, if the form does not validate, say so to the user
  1430. - Fix the total number of pages when there are no PR/issues/repo (vibhcool)
  1431. - Fix forking a repo with a namespace
  1432. - Include the namespace in the message returned in pagure.lib.new_project
  1433. - Move the metadata-ery area in PR to under the comments tab (Ryan Lerch)
  1434. - Update setup instructions in the README.rst (alunux)
  1435. - Support namespaced projects when reading json data (clime)
  1436. - When uploading a file in a new issue, propagate the namespace info
  1437. - Ensure our avatar works with non-ascii email addresses
  1438. - Downgrade to emoji 1.3.1, we loose some of the newer emojis we get back
  1439. preview and reasonable size (Clément Verna)
  1440. - Fix sending notifications email containing non-ascii characters
  1441. - Fix using the proper URL in email notifications (Adam Williamson)
  1442. - Move the Clear and Cancel buttons to the right hand side of the comment box
  1443. - Fix spelling in the PR page (Vibhor Verma)
  1444. - Support loading custom fields from JSON when loading issues from git (Vivek
  1445. Anand)
  1446. - Fix handling namespaced project in the SSE server (Adam Williamson)
  1447. - Add a pylintrc configuration file to help with code standards (Adam
  1448. Williamson)
  1449. - Add go-import meta tag allowing go projects to be hosted on pagure (Patrick
  1450. Uiterwijk)
  1451. - Fix index overflow when opening remote pull-request (Mark Reynolds)
  1452. - Add SSE support for custom fields
  1453. - Add a git blame view
  1454. - Allow emptying a file when doing online editing
  1455. - Only let admins edit the dependency tree of issues
  1456. - Fix some spelling errors (Adam Williamson)
  1457. - Add SHA256 signature to webhooks notifications (Patrick Uiterwijk)
  1458. - Multiple fixes in the API documentation and output
  1459. 2.8.1 (2016-10-24)
  1460. ------------------
  1461. - Handle empty files in detect_encodings (Jeremy Cline)
  1462. - Fix the import of encoding_utils in the issues controller
  1463. - Fix the list of commits page
  1464. - Update docs to dnf (Rahul Bajaj)
  1465. - Add close status in the repo table if not present when updating/creating issue
  1466. via git (Vivek Anand)
  1467. - If chardet do not return any result, default to UTF-8
  1468. 2.8 (2016-10-21)
  1469. ----------------
  1470. - Fix the migration adding the close_status field to remove the old status
  1471. only at the end
  1472. - Fix the RTD and Force push hooks for the change in location of the plugins
  1473. - Fix creating new PR from the page listing the pull-requests
  1474. - Add the possibility for the user to edit their settings in their settings page
  1475. - Include the close_status in the JSON representation of an issue
  1476. - Load the close_status if there is one set in the JSON repsentation given
  1477. - Fix running the tests when EVENTSOURCE_SOURCE is defined in the
  1478. configuration.
  1479. - Make the search case-insensitive when searching issues
  1480. - Fix the "cancel" button when editing a "regular" comment on a pull-request
  1481. - Remove the ``Content-Encoding`` headers from responses (Jeremy Cline)
  1482. - Fix creating the release folder for project with a namespace
  1483. - When sending email, make the user who made the action be in the From field
  1484. - When searching groups, search both their name and display name
  1485. - Create a Vagrantfile and Ansible role for Pagure development (Jeremy Cline)
  1486. - Made searching issue stop clearing status and tags filters (Ryan Lerch)
  1487. - Improve documentation (Bill Auger)
  1488. - Fix finding out the encoding of a file in git (Jeremy Cline)
  1489. - Fix making cross-project references using <project>#<id>
  1490. - Allow filter the list of commits for a certain user
  1491. - Ensure we disable all the submit button when clicking on one (avoid sending
  1492. two comments)
  1493. - Do not always compute the list of diff commits
  1494. - Let's not assume PAGURE_CI_SERVICES is always there
  1495. - Allow html table to define their CSS class
  1496. - Add a link to the user on the commit list (Ryan Lerch)
  1497. - Change `Fork` button to `View Fork` on all pages of the project (tenstormavi)
  1498. - Enable some of the markdown extensions by default
  1499. - Fix mixed content blocked in the doc by not sending our user to google (Rahul
  1500. Bajaj)
  1501. 2.7.2 (2016-10-13)
  1502. ------------------
  1503. - Do not show the custom field if the project has none
  1504. - Improve the documentation around SEND_EMAIL (Jeremy Cline)
  1505. 2.7.1 (2016-10-12)
  1506. ------------------
  1507. - Bug fix to the custom fields feature
  1508. 2.7 (2016-10-11)
  1509. ----------------
  1510. - Clean imports (Vivek Anand)
  1511. - Fix NoneType error when pagure-ci form is inactively updated first time
  1512. (Farhaan Bukhsh)
  1513. - Fix minor typos in configuration documentation (Jeremy Cline)
  1514. - Use context managers to ensure files are closed (Jeremy Cline)
  1515. - Adjust update_tickets_from_git to add milestones for issues as well (Vivek
  1516. Anand)
  1517. - Update milestone description in Settings (Lubomír Sedlář)
  1518. - Add checks for the validity of the ssh keys provided (Patrick Uiterwijk)
  1519. - Remove hardcoded hostnames in unit tests (Jeremy Cline)
  1520. - Skip clamd-dependent tests when pyclamd isn't installed (Patrick Uiterwijk)
  1521. - Fix interacting with branch containing a dot in their name (new PR button,
  1522. delete branch button)
  1523. - Ensure only project admins can create reports
  1524. - Do not warn admins when a build in jenkins did not correspond to a
  1525. pull-request
  1526. - Fix the progress bar on the page listing the issues (d3prof3t)
  1527. - Do not call the API when viewing a diff or a PR if issues or PRs are disabled
  1528. - Port pagure to flask 0.13+
  1529. - Fix displaying the reason when a PR cannot be merged
  1530. - Allow projects to turn on/off fedmsg notifications
  1531. - Fix the web-hook service so when a project is updated the service is as well
  1532. - Add the possibility to specify a status to close ticket (closed as upstream,
  1533. works for me, invalid...)
  1534. - Let all the optional SelectFields in forms return None when they should
  1535. - Make each tests in the test suite run in its own temporary directory (Jeremy
  1536. Cline)
  1537. - Use long dash in footer instead of two short ones (Lubomír Sedlář)
  1538. - Add a welcome screen to new comers (does not work with local auth)
  1539. - Ensure user are not logged in if we couldn't properly set them up in pagure
  1540. - Add the possibility to search through issues (AnjaliPardeshi)
  1541. - Add a default hook to all new projects, this hook re-set the merge status of
  1542. all the open PR upon push to the main branch of the repo
  1543. - Add support for setting custom fields for issues per projects
  1544. 2.6 (2016-09-20)
  1545. ----------------
  1546. - Fix creating new PR from the page listing all the PRs
  1547. - Fix grammar error in the issues and PRs page (Jason Tibbitts)
  1548. - Fall back to the user's username if no fullname is provided (Vivek Anand)
  1549. - Fix typo in the using_docs documentation page (Aleksandra Fedorova (bookwar))
  1550. - Fix viewing plugins when the project has a namespace (and the redirection
  1551. after that)
  1552. - Rework the milestone, so that a ticket can only be assigned to one milestone
  1553. and things look better
  1554. - Add a project wide setting allowing to make all new tickets private by default
  1555. (with the option to make them public)
  1556. - Allow toggling the privacy setting when editing the ticket's metadata
  1557. - Rework some of the logic of pagure-ci for when it searches the project related
  1558. to a receive notification
  1559. - Fix the label of the button to view all close issues to be consistent with the
  1560. PR page (Jeremy Cline)
  1561. - Add the possibility for projects to notify specific email addresses about
  1562. issues/PRs update
  1563. - Fix loading tickets from the ticket git repository (fixes importing project to
  1564. pagure)
  1565. 2.5 (2016-09-13)
  1566. ----------------
  1567. - Don't track pagure_env (venv) dir (Paul W. Frields)
  1568. - Setting Mail-Followup-To when sending message to users (Sergio Durigan Junior)
  1569. (Fixed by Ryan Lerch and I)
  1570. - Fixed the tickets hook so that we don't ignore the files committed in the first
  1571. commit (Clement Verna)
  1572. - Fix behavior of view of tree if default branch is not 'master' (Vivek Anand)
  1573. - Fix checking the release folder for forks
  1574. - Improve the Remote PR page
  1575. - Improve the fatal error page to display the error message is there is one
  1576. - Avoid issues attachment containing json to be considered as an issue to be
  1577. created/updated (Clement Verna)
  1578. - Allow the <del> html tag (Clement Verna)
  1579. - Specify rel="noopener noreferrer" to link including target='_blank'
  1580. - Show in the overview page when a branch is already concerned by a PR
  1581. - Fix viewing a tree when the identifier provided is one of a blob (not a tree)
  1582. - Port all the plugins to `uselist=False` in their backref to make the code
  1583. cleaner
  1584. - Fix pagure_ci for all sort of small issues but also simply so that it works as
  1585. expected
  1586. - Make the private method __get_user public as get_user
  1587. - Improve the documentation (fix typos and grammar errors) (Sergio Durigan
  1588. Junior)
  1589. - Drop the `fake` namespaces in favor of real ones
  1590. - Add the possibility to view all tickets/pull-requests of a project (regardless
  1591. of their status)
  1592. - Paginate the pages listing the tickets and the pull-requests
  1593. - Add the possibility to save a certain filtering on issues as reports
  1594. - Add support to our local markdown processor for ~~striked~~
  1595. 2.4 (2016-08-31)
  1596. ----------------
  1597. - [Security] Avoid all html related mimetypes and force the download if any
  1598. (CVE-2016-1000037) -- Fixed in 2.3.4 as well
  1599. - Redirect the URL to projects <foo>.git to <foo> (Abhishek Goswami)
  1600. - Allow creating projects with 40 chars length name on newer pagure instances
  1601. - Fix @<user> and #<id> when editing a comment (Eric Barbour)
  1602. - Display properly and nicely the ACLs of the API tokens (Lubomír Sedlář)
  1603. - Removing html5lib so bleach installation finds what version is best (Tiago M.
  1604. Vieira)
  1605. - Remove the branchchooser from the repoheader (again) (Ryan Lerch)
  1606. - Fix hard-coded urls in the master template
  1607. - Made the interaction with the watch button clearer (Ryan Lerch)
  1608. - Introduce pagure-ci, a service allowing to integrate pagure with a jenkins
  1609. instance (Farhaan Bukhsh and I)
  1610. - Accept Close{,s,d} in the same way as Merges and Fixes (Patrick Uiterwijk)
  1611. - Avoid showing the 'New PR' button on the overview page is a PR already exists
  1612. for this branch, in the main project or a fork (Vivek Anand)
  1613. - Fix presenting the readme file and display the readme in the tree page if
  1614. there is one in the folder displayed (Ryan Lerch)
  1615. - Move the new issue button to be available on every page (AnjaliPardeshi)
  1616. - Fix pagure for when an user enters a comment containing #<id> where the id
  1617. isn't found in the db
  1618. - Make the bootstrap URLs configurable (so that they don't necessarily point to
  1619. the Fedora infra) (Farhaan Bukhsh)
  1620. - Fix how the web-hook server determine the project and its username
  1621. - Replace the login icon with plain text (Ryan Lerch)
  1622. - Fix layout in the doc (Farhaan Bukhsh)
  1623. - Improve the load_from_disk utility script
  1624. - Fix our mardown processor to avoid crashing on #<text> (where we expect #<id>)
  1625. - Fix the search for projects with a / in their names
  1626. - Fix adding a file to a ticket when running pagure with `local` auth
  1627. - Improve the grammar around the allowed prefix in our fake-namespaces (Jason
  1628. Tibbitts)
  1629. - Implement scanning of attached files for viruses (Patrick Uiterwijk)
  1630. - Document how to set-up multiple ssh keys per user (William Moreno Reyes)
  1631. - Add display_name and description to groups, and allow editing them
  1632. - Add the ability to run the post-receive hook after merging a PR in the UI
  1633. - Fix showing the group page even when user management is turned off (Vivek
  1634. Anand)
  1635. - Make explicit what the separators for tags is (Farhaan Bukhsh)
  1636. - Include the word setting with icon (tenstormavi)
  1637. - Fix the requirements.txt file (Vivek Anand)
  1638. - Cleaned up the topbar a bit (Ryan Lerch)
  1639. - Fix location of bottom pagination links on user page (Ryan Lerch)
  1640. - Add user's project watch list in index page of the user (Vivek Anand)
  1641. - Fix showing the reporter when listing the closed issues (Vivek Anand)
  1642. - Fix accessing forks once the main repo has been deleted (Farhaan Bukhsh)
  1643. 2.3.4 (2016-07-27)
  1644. ------------------
  1645. - Security fix release blocking all html related mimetype when displaying the
  1646. raw files in issues and forces the browser to download them instead (Thanks to
  1647. Patrick Uiterwijk for finding this issue) - CVE: CVE-2016-1000037
  1648. 2.3.3 (2016-07-15)
  1649. ------------------
  1650. - Fix redering the release page when the tag message contain only spaces (Vivek
  1651. Anand)
  1652. - Fix the search in @<username> (Eric Barbour)
  1653. - Displays link and git sub-modules in the tree with a dedicated icon
  1654. 2.3.2 (2016-07-12)
  1655. ------------------
  1656. - Do not mark as local only some of the internal API endpoints since they are
  1657. called via ajax and thus with the user's IP
  1658. 2.3.1 (2016-07-11)
  1659. ------------------
  1660. - Fix sending notifications to users watching a project
  1661. - Fix displaying if you are watching the project or not
  1662. 2.3 (2016-07-11)
  1663. ----------------
  1664. - Fix typos in pr_custom_page.rst (Lubomír Sedlář)
  1665. - Improve the unit-test suite (Vivek Anand)
  1666. - Remove the branch chooser from the repoheader and rework the fork button (Ryan
  1667. Lerch)
  1668. - Add support for non utf-8 file names (Ryan Lerch)
  1669. - Add a 'Duplicate' status for issues (Vivek Anand)
  1670. - Add title attribute for replying to comment and editing the comment in issues
  1671. and PRs (Vivek Anand)
  1672. - Include the user when reporting error by email
  1673. - Add an API endpoint to create projects
  1674. - Add an API endpoint to assign someone to a ticket
  1675. - Add small script to be ran as cron to send reminder of expiring tokens (Vivek
  1676. Anand)
  1677. - Do not show the PR button on branches for which a PR is already opened
  1678. - Add an API endpoint to fork projects
  1679. - Add the possibility to watch/unwatch a project (Gaurav Kumar)
  1680. - Add a 'Take' button on the issue page (Ryan Lerch and I)
  1681. - Add a dev-data script to input some test data in the DB for testing/dev
  1682. purposes (skrzepto)
  1683. - Fix links to ticket/pull-request in the preview of a new ticket
  1684. - Add the possibility to diff two or more commits (Oliver Gutierrez)
  1685. - Fix viewing a file having a non-ascii name
  1686. - Fix viewing the diff between two commits having a file with a non-ascii name
  1687. - On the commit detail page, specify on which branch(es) the commit is
  1688. - Add the possibility to have instance-wide admins will full access to every
  1689. projects (set in the configuration file)
  1690. - Drop the hash to the blob of the file when listing the files in the repo
  1691. - Add autocomple/suggestion on typing @<username> on a ticket or a pull-request
  1692. (Eric Barbour)
  1693. - Fix the edit link when adding a comment to a ticket via SSE
  1694. - Add notifications to issues as we have for pull-requests
  1695. - Record in the db the date at which a ticket was closed (Vivek Anand)
  1696. - Add the possibility for pagure to rely on external groups provided by the auth
  1697. service
  1698. - Add the possibility for pagure to use an SMTP server requiring auth
  1699. (Vyacheslav Anzhiganov)
  1700. - Add autocomple/suggestion on typing #<id> for tickets and pull-requests (Eric
  1701. Barbour)
  1702. - With creating a README when project's description has non-ascii characters
  1703. (vanzhiganov)
  1704. - Add colored label for duplicate status of issues (Vivek Anand)
  1705. - Ship working wsgi files so that they can be used directly from the RPM
  1706. - Mark the wsgi files provided with the RPM as %%config(noreplace)
  1707. - Install the api_key_expire_mail.py script next to the createdb one
  1708. 2.2.1 (2016-06-01)
  1709. ------------------
  1710. - Fix showing the initial comment on PR having only one commit (Ryan Lerch)
  1711. - Fix diffs not showing for additions/deletions for files under 1000 lines (Ryan
  1712. Lerch)
  1713. - Split out the commits page to a template of its own (Ryan Lerch)
  1714. - Fix highlighting the commits tab on commit view
  1715. - Fix the fact that the no readme box show on empty repo (Ryan Lerch)
  1716. 2.2 (2016-05-31)
  1717. ----------------
  1718. - Fix retrieving the log level from the configuration file (Nuno Maltez)
  1719. - Rework the labels used when sorting projects (Ankush Behl)
  1720. - Fix spelling error in sample config (Bruno)
  1721. - Hide the URL to the git repo for issues if these are disabled
  1722. - Do not notify about tickets being assigned when loaded from the issue git repo
  1723. (Clément Verna)
  1724. - Adjust get_revs_between so that if the push is in the main branch we still get
  1725. the list of changes (Clément Verna)
  1726. - Fix display of files moved on both old and new pygit2 (Ryan Lerch)
  1727. - Fix changes summary sidebar for older versions of pygit (Ryan Lerch)
  1728. - Fix the label on the button to add a new milestone to a project (Lubomír
  1729. Sedlář)
  1730. - Allow the roadmap feature to have multiple milestone without dates (Lubomír
  1731. Sedlář)
  1732. - Fix the link to switch the roadmap/list views (Lubomír Sedlář)
  1733. - Render the emoji when adding a comment to a ticket or PR via SSE (Clément
  1734. Verna)
  1735. - Always allow adming to edit/delete comments on issues
  1736. - Build Require systemd to get macros defined in the spec file (Bruno)
  1737. - Upon creating a ticket if the form already has data, show that data
  1738. - Add a readme placeholder for projects without a readme (Ryan Lerch)
  1739. - Enable markdown preview on create pull request (Ryan Lerch)
  1740. - Make bottom pagination links on project list respect the sorting filter (Ryan
  1741. Lerch)
  1742. - Add the ability to create a README when creating a project (Ryan Lerch)
  1743. - Try to prevent pushing commits without a parent when there should be one
  1744. - Fix the configuration keys to turn off ticket or user/group management for an
  1745. entire instance (Vivek Anand)
  1746. - Fix deleting project (propagate the deletion to the plugins tables)
  1747. - Do not render the diffs of large added and removed files (more than 1000
  1748. lines) (Ryan Lerch)
  1749. - Adjust the UI on the template to add/remove a group or an user to a project in
  1750. the settings page (Ryan Lerch)
  1751. - Check if a tag exists on a project before allowing to edit it (skrzepto)
  1752. 2.1.1 (2016-05-13)
  1753. ------------------
  1754. - Do not render the comment as markdown when importing tickets via the ticket
  1755. git repo
  1756. - Revert get_revs_between changes made in
  1757. https://pagure.io/pagure/pull-request/941 (Clement Verna)
  1758. 2.1 (2016-05-13)
  1759. ----------------
  1760. - Fix the milter to get it working (hotfixed in prod)
  1761. - Fix the fedmsg hook so that it works fine (hotfixed in prod)
  1762. - Fix the path of one of the internal API endpoint
  1763. - Pass client_encoding utf8 when connecting to the DB (Richard Marko)
  1764. - Do not use client_encoding if using sqlite (Ryan Lerch)
  1765. - Allow project names up to 255 characters (Richard Marko)
  1766. - Add a spinner showing we're working on retrieve the PR status on the PR page
  1767. (farhaanbukhsh)
  1768. - Rework installing and removing git hooks (Clement Verna)
  1769. - Rework the summary of the changes on the PR page (Ryan Lerch)
  1770. - Improve the description of the priority system (Lubomír Sedlář)
  1771. - Fix commit url in the pagure hook (Mike McLean)
  1772. - Improve the regex when fixing/relating a commit to a ticket or a PR (Mike
  1773. McLean)
  1774. - Improve the description of the pagure hook (Mike McLean)
  1775. - Fix the priority system to support tickets without priority
  1776. - Fix the ordering of the priority in the drop-down list of priorities
  1777. - Ensure the drop-down list of priorities defaults to the current priority
  1778. - Adjust the runserver.py script to setup PAGURE_CONFIG before importing pagure
  1779. - Remove flashed message when creating a new project
  1780. - Add markdown support for making of PR# a link to the corresponding PR
  1781. - Include the priority in the JSON representation of a ticket
  1782. - Include the priorities in the JSON representation of a project
  1783. - Do not update the assignee if the person who commented isn't an admin
  1784. - When adding a comment fails, include the comment text in the form if there was
  1785. one
  1786. - Add support to remove a group from a project
  1787. - Add a roadmap feature with corresponding documentation
  1788. - Allow 'kbd' and 'var' html tags to render properly
  1789. - Fix deleting a project on disk as well as in the DB
  1790. - Allow setting the date_created field when importing ticket from git (Clement
  1791. Verna)
  1792. - Strip GPG signature from the release message on the release page (Jan Pokorný)
  1793. - Make comment on PR diffs fit the parent, and not overflow horiz (Ryan Lerch)
  1794. 2.0.1 (2016-04-24)
  1795. ------------------
  1796. - Fixes to the UPGRADING documentation
  1797. - Fix URLs to the git repos shown in the overview page for forks
  1798. - Fix the project titles in the html to not start with `forks/`
  1799. 2.0 (2016-04-22)
  1800. ----------------
  1801. - Rework the initial comment of a PR, making it less a comment and more
  1802. something that belong to the PR itself
  1803. - Fix showing or not the fork button when editing a comment on an issue or a PR
  1804. and fix the highlighted tab when editing comment of an issue (Oliver
  1805. Gutierrez)
  1806. - Fix the count of comments shown on the page listing all the PRs to include
  1807. only the comments and not the notifications (farhaanbukhsh)
  1808. - In the settings page explain that API keys are personal (Lubomír Sedlář)
  1809. - Rework the fedmsg message sent upon pushing commits, one message per push
  1810. instead of one message per commit
  1811. - Mark the page next/previous as disabled when they are (on browse pages)
  1812. - Avoid the logout/login loop when logging out
  1813. - Support rendering file with a `.markdown` extension
  1814. - Fix the layout of the password change branch
  1815. - Improve the documentation, add overview graphs, expand the usage section,
  1816. improve the overview description
  1817. - Fix checking if the user is an admin of a project or not (which was making the
  1818. user experience confusing as they sometime had the fork button and sometime
  1819. not)
  1820. - Fix the pagination on the browse pages when the results are sorted
  1821. - Disable the Commit and Files tabs if a repo is new
  1822. - Update the pagure logo to look better (Ryan Lerch)
  1823. - Allow anyone to fork any project (Ryan Lerch)
  1824. - Fix searching on the browse pages by preventing submission of the 'enter' key
  1825. (Ryan Lerch)
  1826. - Rework the issue page to be a single, large form allowing to update the
  1827. meta-data and comment in one action and fixing updating the page via SSE
  1828. - Turn off the project's documentation by default to empty `Docs` tab leading to
  1829. nothing
  1830. - Fill the initial comment with the body of the commit message if the PR only
  1831. has one commit (Ryan Lerch)
  1832. - Add a plugin/git hook allowing to disable non fast-forward pushes on a branch
  1833. basis
  1834. - Fix asynchronous inline comments in PR by fixing the URL to which the form is
  1835. submitted
  1836. - Add a plugin/git hook allowing to trigger build on readthedocs.org upon git
  1837. push, with the possibility to restrict the trigger to only certain branches
  1838. - Automatically scroll to the highlighted range when viewing a file with a
  1839. selection (Lubomír Sedlář)
  1840. - Indicate the project's creation date in the overview page (Anthony Lackey)
  1841. - Clear the `preview` field after adding a comment via SSE
  1842. - Adjust the unit-tests for the change in behavior in pygments 2.1.3
  1843. - Fix listing all the request when the status is True and do not convert to text
  1844. request.closed_at if it is in fact None
  1845. - Improved documentation
  1846. - Attempt to fix the error `too many open files` on the EventSource Server
  1847. - Add a new param to runserver.py to set the host (Ryan Lerch)
  1848. - Fix the of the Docs tab and the Fork button with rounded corners (Pedro Lima)
  1849. - Expand the information in the notifications message when a PR is updated (Ryan
  1850. Lerch)
  1851. - Fix hiding the reply buttons when users are not authenticated (Paul W. Frields)
  1852. - Improve the description of the git hooks (Lubomír Sedlář)
  1853. - Allow reply to a notification of pagure and setting the reply email address as
  1854. Cc
  1855. - In the fedmsg git hook, publish the username of all the users who authored the
  1856. commits pushed
  1857. - Add an activity page/feed for each project using the information retrieved
  1858. from datagrepper (Ryan Lerch)
  1859. - Fix showing lightweight tags in the releases page (Ryan Lerch)
  1860. - Fix showing the list of branches when viewing a file
  1861. - Add priorities to issues, with the possibility to filter or sort them by it in
  1862. the page listing them.
  1863. - Add support for pseudo-namespace to pagure (ie: allow one '/' in project name
  1864. with a limited set of prefix allowed)
  1865. - Add a new plugin/hook to block push containing commits missing the
  1866. 'Signed-off-by' line
  1867. - Ensure we always use the default email address when sending notification to
  1868. avoid potentially sending twice a notification
  1869. - Add support for using the keyword Merge(s|d) to close a ticket or pull-request
  1870. via a commit message (Patrick Uiterwijk)
  1871. - Add an UPGRADING.rst documentation file explaining how to upgrade between
  1872. pagure releases
  1873. 1.2 (2016-03-01)
  1874. ----------------
  1875. - Add the possibility to create a comment when opening a pull-request (Clement
  1876. Verna)
  1877. - Fix creating PR from a fork directly from the page listing all the PR on the
  1878. main project (Ryan Lerch)
  1879. - Color the label showing the issues' status on the issue page and the page
  1880. listing them (Ryan Lerch)
  1881. - Add a small padding at the bottom of the blockquote (Ryan Lerch)
  1882. - In the list of closed PR, replace the column of the assignee with the date of
  1883. closing (Ryan Lerch)
  1884. - Drop font awesome since we no longer use it and compress the png of the
  1885. current logo (Ryan Lerch)
  1886. - Drop the svg of the old logo from the source (Ryan Lerch)
  1887. - Add descriptions to the git hooks in the settings page (farhaanbukhsh)
  1888. - Fix the pagure git hook
  1889. 1.1.1 (2016-02-24)
  1890. ------------------
  1891. - Fix showing some files where decoding to UTF-8 was failing
  1892. - Avoid adding a notification to a PR for nothing
  1893. - Show notifications correctly on the PR page when received via SSE
  1894. 1.1 (2016-02-23)
  1895. ----------------
  1896. - Sort the release by commit time rather than name (Clerment Verna)
  1897. - Add a link to the markdown syntax we support
  1898. - Add the possibility to display custom info when creating a new PR
  1899. - Improve the title of the issue page
  1900. - Make the ssh_info page more flexible so that we can add new info more easily
  1901. - Add the possibility to resend a confirmation email when adding a new email
  1902. address
  1903. - Encode the email in UTF-8 for domain name supporting it
  1904. - Add a button to eas