changelog.rst 87 KB

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