pagure.spec 49 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116
  1. %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from
  2. %distutils.sysconfig import get_python_lib; print (get_python_lib())")}
  3. Name: pagure
  4. Version: 2.3.3
  5. Release: 1%{?dist}
  6. Summary: A git-centered forge
  7. License: GPLv2+
  8. URL: https://pagure.io/pagure
  9. Source0: https://pagure.io/releases/pagure/%{name}-%{version}.tar.gz
  10. BuildArch: noarch
  11. BuildRequires: python2-devel
  12. BuildRequires: python-setuptools
  13. BuildRequires: python-nose
  14. BuildRequires: py-bcrypt
  15. BuildRequires: python-alembic
  16. BuildRequires: python-arrow
  17. BuildRequires: python-binaryornot
  18. BuildRequires: python-bleach
  19. BuildRequires: python-blinker
  20. BuildRequires: python-chardet
  21. BuildRequires: python-cryptography
  22. BuildRequires: python-docutils
  23. BuildRequires: python-flask
  24. BuildRequires: python-flask-wtf
  25. BuildRequires: python-flask-multistatic
  26. BuildRequires: python-markdown
  27. BuildRequires: python-psutil
  28. BuildRequires: python-pygit2 >= 0.20.1
  29. BuildRequires: python-pygments
  30. BuildRequires: python-fedora
  31. BuildRequires: python-openid
  32. BuildRequires: python-openid-cla
  33. BuildRequires: python-openid-teams
  34. BuildRequires: python-straight-plugin
  35. BuildRequires: python-wtforms
  36. BuildRequires: python-munch
  37. BuildRequires: python-enum34
  38. BuildRequires: python-redis
  39. # EPEL6
  40. %if ( 0%{?rhel} && 0%{?rhel} == 6 )
  41. BuildRequires: python-sqlalchemy0.8
  42. Requires: python-sqlalchemy0.8
  43. %else
  44. BuildRequires: python-sqlalchemy > 0.8
  45. Requires: python-sqlalchemy > 0.8
  46. BuildRequires: systemd
  47. %endif
  48. Requires: py-bcrypt
  49. Requires: python-alembic
  50. Requires: python-arrow
  51. Requires: python-binaryornot
  52. Requires: python-bleach
  53. Requires: python-blinker
  54. Requires: python-chardet
  55. Requires: python-cryptography
  56. Requires: python-docutils
  57. Requires: python-enum34
  58. Requires: python-flask
  59. Requires: python-flask-wtf
  60. Requires: python-flask-multistatic
  61. Requires: python-markdown
  62. Requires: python-psutil
  63. Requires: python-pygit2 >= 0.20.1
  64. Requires: python-pygments
  65. Requires: python-fedora
  66. Requires: python-openid
  67. Requires: python-openid-cla
  68. Requires: python-openid-teams
  69. Requires: python-straight-plugin
  70. Requires: python-wtforms
  71. Requires: python-munch
  72. Requires: python-redis
  73. Requires: mod_wsgi
  74. # No dependency of the app per se, but required to make it working.
  75. Requires: gitolite3
  76. %description
  77. Pagure is a light-weight git-centered forge based on pygit2.
  78. Currently, Pagure offers a web-interface for git repositories, a ticket
  79. system and possibilities to create new projects, fork existing ones and
  80. create/merge pull-requests across or within projects.
  81. %package milters
  82. Summary: Milter to integrate pagure with emails
  83. BuildArch: noarch
  84. BuildRequires: systemd-devel
  85. Requires: python-pymilter
  86. Requires(post): systemd
  87. Requires(preun): systemd
  88. Requires(postun): systemd
  89. # It would work with sendmail but we configure things (like the tempfile)
  90. # to work with postfix
  91. Requires: postfix
  92. %description milters
  93. Milters (Mail filters) allowing the integration of pagure and emails.
  94. This is useful for example to allow commenting on a ticket by email.
  95. %package ev
  96. Summary: EventSource server for pagure
  97. BuildArch: noarch
  98. BuildRequires: systemd-devel
  99. Requires: python-redis
  100. Requires: python-trollius
  101. Requires: python-trollius-redis
  102. Requires(post): systemd
  103. Requires(preun): systemd
  104. Requires(postun): systemd
  105. %description ev
  106. Pagure comes with an eventsource server allowing live update of the pages
  107. supporting it. This package provides it.
  108. %package webhook
  109. Summary: Web-Hook server for pagure
  110. BuildArch: noarch
  111. BuildRequires: systemd-devel
  112. Requires: python-redis
  113. Requires: python-trollius
  114. Requires: python-trollius-redis
  115. Requires(post): systemd
  116. Requires(preun): systemd
  117. Requires(postun): systemd
  118. %description webhook
  119. Pagure comes with an webhook server allowing http callbacks for any action
  120. done on a project. This package provides it.
  121. %package ci
  122. Summary: A CI service for pagure
  123. BuildArch: noarch
  124. BuildRequires: systemd-devel
  125. Requires: python-redis
  126. Requires: python-trollius
  127. Requires: python-trollius-redis
  128. Requires: python-jenkins
  129. Requires(post): systemd
  130. Requires(preun): systemd
  131. Requires(postun): systemd
  132. %description ci
  133. Pagure comes with a continuous integration service, currently supporting
  134. only jenkins but extendable to others.
  135. With this service, your CI server will be able to report the results of the
  136. build on the pull-requests opened to your project.
  137. %prep
  138. %setup -q
  139. %build
  140. %{__python2} setup.py build
  141. %install
  142. %{__python2} setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT
  143. # Install apache configuration file
  144. mkdir -p $RPM_BUILD_ROOT/%{_sysconfdir}/httpd/conf.d/
  145. install -m 644 files/pagure.conf $RPM_BUILD_ROOT/%{_sysconfdir}/httpd/conf.d/pagure.conf
  146. # Install configuration file
  147. mkdir -p $RPM_BUILD_ROOT/%{_sysconfdir}/pagure
  148. install -m 644 files/pagure.cfg.sample $RPM_BUILD_ROOT/%{_sysconfdir}/pagure/pagure.cfg
  149. # Install WSGI file
  150. mkdir -p $RPM_BUILD_ROOT/%{_datadir}/pagure
  151. install -m 644 files/pagure.wsgi $RPM_BUILD_ROOT/%{_datadir}/pagure/pagure.wsgi
  152. install -m 644 files/doc_pagure.wsgi $RPM_BUILD_ROOT/%{_datadir}/pagure/doc_pagure.wsgi
  153. # Install the createdb script
  154. install -m 644 createdb.py $RPM_BUILD_ROOT/%{_datadir}/pagure/pagure_createdb.py
  155. # Install the api_key_expire_mail.py script
  156. install -m 644 createdb.py $RPM_BUILD_ROOT/%{_datadir}/pagure/api_key_expire_mail.py
  157. # Install the alembic configuration file
  158. install -m 644 files/alembic.ini $RPM_BUILD_ROOT/%{_sysconfdir}/pagure/alembic.ini
  159. # Install the alembic revisions
  160. cp -r alembic $RPM_BUILD_ROOT/%{_datadir}/pagure
  161. # Install the milter files
  162. mkdir -p $RPM_BUILD_ROOT/%{_localstatedir}/run/pagure
  163. mkdir -p $RPM_BUILD_ROOT/%{_tmpfilesdir}
  164. mkdir -p $RPM_BUILD_ROOT/%{_unitdir}
  165. install -m 0644 milters/milter_tempfile.conf \
  166. $RPM_BUILD_ROOT/%{_tmpfilesdir}/%{name}-milter.conf
  167. install -m 644 milters/pagure_milter.service \
  168. $RPM_BUILD_ROOT/%{_unitdir}/pagure_milter.service
  169. install -m 644 milters/comment_email_milter.py \
  170. $RPM_BUILD_ROOT/%{_datadir}/pagure/comment_email_milter.py
  171. # Install the eventsource
  172. mkdir -p $RPM_BUILD_ROOT/%{_libexecdir}/pagure-ev
  173. install -m 755 ev-server/pagure-stream-server.py \
  174. $RPM_BUILD_ROOT/%{_libexecdir}/pagure-ev/pagure-stream-server.py
  175. install -m 644 ev-server/pagure_ev.service \
  176. $RPM_BUILD_ROOT/%{_unitdir}/pagure_ev.service
  177. # Install the web-hook
  178. mkdir -p $RPM_BUILD_ROOT/%{_libexecdir}/pagure-webhook
  179. install -m 755 webhook-server/pagure-webhook-server.py \
  180. $RPM_BUILD_ROOT/%{_libexecdir}/pagure-webhook/pagure-webhook-server.py
  181. install -m 644 webhook-server/pagure_webhook.service \
  182. $RPM_BUILD_ROOT/%{_unitdir}/pagure_webhook.service
  183. # Install the ci service
  184. mkdir -p $RPM_BUILD_ROOT/%{_libexecdir}/pagure-ci
  185. install -m 755 pagure-ci/pagure_ci_server.py \
  186. $RPM_BUILD_ROOT/%{_libexecdir}/pagure-ci/pagure_ci_server.py
  187. install -m 644 pagure-ci/pagure-ci.service \
  188. $RPM_BUILD_ROOT/%{_unitdir}/pagure-ci.service
  189. %post milters
  190. %systemd_post pagure_milter.service
  191. %post ev
  192. %systemd_post pagure_ev.service
  193. %post webhook
  194. %systemd_post pagure_webhook.service
  195. %post ci
  196. %systemd_post pagure_ci.service
  197. %preun milters
  198. %systemd_preun pagure_milter.service
  199. %preun ev
  200. %systemd_preun pagure_ev.service
  201. %preun webhook
  202. %systemd_preun pagure_webhook.service
  203. %preun ci
  204. %systemd_preun pagure_ci.service
  205. %postun milters
  206. %systemd_postun_with_restart pagure_milter.service
  207. %postun ev
  208. %systemd_postun_with_restart pagure_ev.service
  209. %postun webhook
  210. %systemd_postun_with_restart pagure_webhook.service
  211. %postun ci
  212. %systemd_postun_with_restart pagure_ci.service
  213. %files
  214. %doc README.rst UPGRADING.rst
  215. %license LICENSE
  216. %config(noreplace) %{_sysconfdir}/httpd/conf.d/pagure.conf
  217. %config(noreplace) %{_sysconfdir}/pagure/pagure.cfg
  218. %config(noreplace) %{_sysconfdir}/pagure/alembic.ini
  219. %dir %{_sysconfdir}/pagure/
  220. %dir %{_datadir}/pagure/
  221. %config(noreplace) %{_datadir}/pagure/*.wsgi
  222. %{_datadir}/pagure/*.py*
  223. %{_datadir}/pagure/alembic/
  224. %{python_sitelib}/pagure/
  225. %{python_sitelib}/pagure*.egg-info
  226. %files milters
  227. %license LICENSE
  228. %attr(755,postfix,postfix) %dir %{_localstatedir}/run/pagure
  229. %dir %{_datadir}/pagure/
  230. %{_tmpfilesdir}/%{name}-milter.conf
  231. %{_unitdir}/pagure_milter.service
  232. %{_datadir}/pagure/comment_email_milter.py*
  233. %files ev
  234. %license LICENSE
  235. %{_libexecdir}/pagure-ev/
  236. %{_unitdir}/pagure_ev.service
  237. %files webhook
  238. %license LICENSE
  239. %{_libexecdir}/pagure-webhook/
  240. %{_unitdir}/pagure_webhook.service
  241. %files ci
  242. %license LICENSE
  243. %{_libexecdir}/pagure-ci/
  244. %{_unitdir}/pagure_ci.service
  245. %changelog
  246. * Fri Jul 15 2016 Pierre-Yves Chibon <pingou@pingoured.fr> - 2.3.3-1
  247. - Update to 2.3.3
  248. - Fix redering the release page when the tag message contain only spaces (Vivek
  249. Anand)
  250. - Fix the search in @<username> (Eric Barbour)
  251. - Displays link and git sub-modules in the tree with a dedicated icon
  252. * Tue Jul 12 2016 Pierre-Yves Chibon <pingou@pingoured.fr> - 2.3.2-1
  253. - Update to 2.3.2
  254. - Do not mark as local only some of the internal API endpoints since they are
  255. called via ajax and thus with the user's IP
  256. * Mon Jul 11 2016 Pierre-Yves Chibon <pingou@pingoured.fr> - 2.3.1-1
  257. - Update to 2.3.1
  258. - Fix sending notifications to users watching a project
  259. - Fix displaying if you are watching the project or not
  260. * Mon Jul 11 2016 Pierre-Yves Chibon <pingou@pingoured.fr> - 2.3-1
  261. - Update to 2.3
  262. - Fix typos in pr_custom_page.rst (Lubomír Sedlář)
  263. - Improve the unit-test suite (Vivek Anand)
  264. - Remove the branch chooser from the repoheader and rework the fork button (Ryan
  265. Lerch)
  266. - Add support for non utf-8 file names (Ryan Lerch)
  267. - Add a 'Duplicate' status for issues (Vivek Anand)
  268. - Add title attribute for replying to comment and editing the comment in issues
  269. and PRs (Vivek Anand)
  270. - Include the user when reporting error by email
  271. - Add an API endpoint to create projects
  272. - Add an API endpoint to assign someone to a ticket
  273. - Add small script to be ran as cron to send reminder of expiring tokens (Vivek
  274. Anand)
  275. - Do not show the PR button on branches for which a PR is already opened
  276. - Add an API endpoint to fork projects
  277. - Add the possibility to watch/unwatch a project (Gaurav Kumar)
  278. - Add a 'Take' button on the issue page (Ryan Lerch and I)
  279. - Add a dev-data script to input some test data in the DB for testing/dev
  280. purposes (skrzepto)
  281. - Fix links to ticket/pull-request in the preview of a new ticket
  282. - Add the possibility to diff two or more commits (Oliver Gutierrez)
  283. - Fix viewing a file having a non-ascii name
  284. - Fix viewing the diff between two commits having a file with a non-ascii name
  285. - On the commit detail page, specify on which branch(es) the commit is
  286. - Add the possibility to have instance-wide admins will full access to every
  287. projects (set in the configuration file)
  288. - Drop the hash to the blob of the file when listing the files in the repo
  289. - Add autocomple/suggestion on typing @<username> on a ticket or a pull-request
  290. (Eric Barbour)
  291. - Fix the edit link when adding a comment to a ticket via SSE
  292. - Add notifications to issues as we have for pull-requests
  293. - Record in the db the date at which a ticket was closed (Vivek Anand)
  294. - Add the possibility for pagure to rely on external groups provided by the auth
  295. service
  296. - Add the possibility for pagure to use an SMTP server requiring auth
  297. (Vyacheslav Anzhiganov)
  298. - Add autocomple/suggestion on typing #<id> for tickets and pull-requests (Eric
  299. Barbour)
  300. - With creating a README when project's description has non-ascii characters
  301. (vanzhiganov)
  302. - Add colored label for duplicate status of issues (Vivek Anand)
  303. - Ship working wsgi files so that they can be used directly from the RPM
  304. - Mark the wsgi files provided with the RPM as %%config(noreplace)
  305. - Install the api_key_expire_mail.py script next to the createdb one
  306. * Wed Jun 01 2016 Pierre-Yves Chibon <pingou@pingoured.fr> - 2.2.1-1
  307. - Update to 2.2.1
  308. - Fix showing the inital comment on PR having only one commit (Ryan Lerch)
  309. - Fix diffs not showing for additions/deletions for files under 1000 lines (Ryan
  310. Lerch)
  311. - Split out the commits page to a template of its own (Ryan Lerch)
  312. - Fix hightlighting the commits tab on commit view
  313. - Fix the fact that the no readme box show on empty repo (Ryan Lerch)
  314. * Tue May 31 2016 Pierre-Yves Chibon <pingou@pingoured.fr> - 2.2-1
  315. - Update to 2.2
  316. - Fix retrieving the log level from the configuration file (Nuno Maltez)
  317. - Rework the labels used when sorting projects (Ankush Behl)
  318. - Fix spelling error in sample config (Bruno)
  319. - Hide the URL to the git repo for issues if these are disabled
  320. - Do not notify about tickets being assigned when loaded from the issue git repo
  321. (Clément Verna)
  322. - Adjust get_revs_between so that if the push is in the main branch we still get
  323. the list of changes (Clément Verna)
  324. - Fix display of files moved on both old and new pygit2 (Ryan Lerch)
  325. - Fix changes summary sidebar for older versions of pygit (Ryan Lerch)
  326. - Fix the label on the button to add a new milestone to a project (Lubomír
  327. Sedlář)
  328. - Allow the roadmap feature to have multiple milestone without dates (Lubomír
  329. Sedlář)
  330. - Fix the link to switch the roadmap/list views (Lubomír Sedlář)
  331. - Render the emoji when adding a comment to a ticket or PR via SSE (Clément
  332. Verna)
  333. - Always allow adming to edit/delete comments on issues
  334. - Build Require systemd to get macros defined in the spec file (Bruno)
  335. - Upon creating a ticket if the form already has data, show that data
  336. - Add a readme placeholder for projects without a readme (Ryan Lerch)
  337. - Enable markdown preview on create pull request (Ryan Lerch)
  338. - Make bottom pagination links on project list respect the sorting filter (Ryan
  339. Lerch)
  340. - Add the ability to create a README when creating a project (Ryan Lerch)
  341. - Try to prevent pushing commits without a parent when there should be one
  342. - Fix the configuration keys to turn off ticket or user/group management for an
  343. entire instance (Vivek Anand)
  344. - Fix deleting project (propagate the deletion to the plugins tables)
  345. - Do not render the diffs of large added and removed files (more than 1000
  346. lines) (Ryan Lerch)
  347. - Adjust the UI on the template to add/remove a group or an user to a project in
  348. the settings page (Ryan Lerch)
  349. - Check if a tag exists on a project before allowing to edit it (skrzepto)
  350. * Fri May 13 2016 Pierre-Yves Chibon <pingou@pingoured.fr> - 2.1.1-1
  351. - Update to 2.1.1
  352. - Do not render the comment as markdown when importing tickets via the ticket
  353. git repo
  354. - Revert get_revs_between changes made in
  355. https://pagure.io/pagure/pull-request/941 (Clement Verna)
  356. * Fri May 13 2016 Pierre-Yves Chibon <pingou@pingoured.fr> - 2.1-1
  357. - Update to 2.1
  358. - Fix the milter to get it working (hotfixed in prod)
  359. - Fix the fedmsg hook so that it works fine (hotfixed in prod)
  360. - Fix the path of one of the internal API endpoint
  361. - Pass client_encoding utf8 when connecting to the DB (Richard Marko)
  362. - Do not use client_encoding if using sqlite (Ryan Lerch)
  363. - Allow project names up to 255 characters (Richard Marko)
  364. - Add a spinner showing we're working on retrieve the PR status on the PR page
  365. (farhaanbukhsh)
  366. - Rework installing and removing git hooks (Clement Verna)
  367. - Rework the summary of the changes on the PR page (Ryan Lerch)
  368. - Improve the description of the priority system (Lubomír Sedlář)
  369. - Fix commit url in the pagure hook (Mike McLean)
  370. - Improve the regex when fixing/relating a commit to a ticket or a PR (Mike
  371. McLean)
  372. - Improve the description of the pagure hook (Mike McLean)
  373. - Fix the priority system to support tickets without priority
  374. - Fix the ordering of the priority in the drop-down list of priorities
  375. - Ensure the drop-down list of priorities defaults to the current priority
  376. - Adjust the runserver.py script to setup PAGURE_CONFIG before importing pagure
  377. - Remove flashed message when creating a new project
  378. - Add markdown support for making of PR# a link to the corresponding PR
  379. - Include the priority in the JSON representation of a ticket
  380. - Include the priorities in the JSON representation of a project
  381. - Do not update the assignee if the person who commented isn't an admin
  382. - When adding a comment fails, include the comment text in the form if there was
  383. one
  384. - Add support to remove a group from a project
  385. - Add a roadmap feature with corresponding documentation
  386. - Allow 'kbd' and 'var' html tags to render properly
  387. - Fix deleting a project on disk as well as in the DB
  388. - Allow setting the date_created field when importing ticket from git (Clement
  389. Verna)
  390. - Strip GPG signature from the release message on the release page (Jan Pokorný)
  391. - Make comment on PR diffs fit the parent, and not overflow horiz (Ryan Lerch)
  392. * Sun Apr 24 2016 Pierre-Yves Chibon <pingou@pingoured.fr> - 2.0.1-1
  393. - Update to 2.0.1
  394. - Fixes to the UPGRADING documentation
  395. - Fix URLs to the git repos shown in the overview page for forks
  396. - Fix the project titles in the html to not start with `forks/`
  397. * Fri Apr 22 2016 Pierre-Yves Chibon <pingou@pingoured.fr> - 2.0-1
  398. - Update to 2.0
  399. - Rework the initial comment of a PR, making it less a comment and more
  400. something that belong to the PR itself
  401. - Fix showing or not the fork button when editing a comment on an issue or a PR
  402. and fix the highlighted tab when editing comment of an issue (Oliver
  403. Gutierrez)
  404. - Fix the count of comments shown on the page listing all the PRs to include
  405. only the comments and not the notifications (farhaanbukhsh)
  406. - In the settings page explain that API keys are personal (Lubomír Sedlář)
  407. - Rework the fedmsg message sent upon pushing commits, one message per push
  408. instead of one message per commit
  409. - Mark the page next/previous as disabled when they are (on browse pages)
  410. - Avoid the logout/login loop when logging out
  411. - Support rendering file with a `.markdown` extension
  412. - Fix the layout of the password change branch
  413. - Improve the documentation, add overview graphs, expand the usage section,
  414. improve the overview description
  415. - Fix checking if the user is an admin of a project or not (which was making the
  416. user experience confusing as they sometime had the fork button and sometime
  417. not)
  418. - Fix the pagination on the browse pages when the results are sorted
  419. - Disable the Commit and Files tabs if a repo is new
  420. - Update the pagure logo to look better (Ryan Lerch)
  421. - Allow anyone to fork any project (Ryan Lerch)
  422. - Fix searching on the browse pages by preventing submission of the 'enter' key
  423. (Ryan Lerch)
  424. - Rework the issue page to be a single, large form allowing to update the
  425. meta-data and comment in one action and fixing updating the page via SSE
  426. - Turn off the project's documentation by default to empty `Docs` tab leading to
  427. nothing
  428. - Fill the initial comment with the body of the commit message if the PR only
  429. has one commit (Ryan Lerch)
  430. - Add a plugin/git hook allowing to disable non fast-forward pushes on a branch
  431. basis
  432. - Fix asynchronous inline comments in PR by fixing the URL to which the form is
  433. submitted
  434. - Add a plugin/git hook allowing to trigger build on readthedocs.org upon git
  435. push, with the possibility to restrict the trigger to only certain branches
  436. - Automatically scroll to the highlighted range when viewing a file with a
  437. selection (Lubomír Sedlář)
  438. - Indicate the project's creation date in the overview page (Anthony Lackey)
  439. - Clear the `preview` field after adding a comment via SSE
  440. - Adjust the unit-tests for the change in behavior in pygments 2.1.3
  441. - Fix listing all the request when the status is True and do not convert to text
  442. request.closed_at if it is in fact None
  443. - Improved documentation
  444. - Attempt to fix the error `too many open files` on the EventSource Server
  445. - Add a new param to runserver.py to set the host (Ryan Lerch)
  446. - Fix the of the Docs tab and the Fork button with rounded corners (Pedro Lima)
  447. - Expand the information in the notifications message when a PR is updated (Ryan
  448. Lerch)
  449. - Fix hidding the reply buttons when users are not authenticated (Paul W. Frields)
  450. - Improve the description of the git hooks (Lubomír Sedlář)
  451. - Allow reply to a notification of pagure and setting the reply email address as
  452. Cc
  453. - In the fedmsg git hook, publish the username of all the users who authored the
  454. commits pushed
  455. - Add an activity page/feed for each project using the information retrieved
  456. from datagrepper (Ryan Lerch)
  457. - Fix showing lightweight tags in the releases page (Ryan Lerch)
  458. - Fix showing the list of branches when viewing a file
  459. - Add priorities to issues, with the possibility to filter or sort them by it in
  460. the page listing them.
  461. - Add support for pseudo-namespace to pagure (ie: allow one '/' in project name
  462. with a limited set of prefix allowed)
  463. - Add a new plugin/hook to block push containing commits missing the
  464. 'Signed-off-by' line
  465. - Ensure we always use the default email address when sending notification to
  466. avoid potentially sending twice a notification
  467. - Add support for using the keyword Merge(s|d) to close a ticket or pull-request
  468. via a commit message (Patrick Uiterwijk)
  469. - Add an UPGRADING.rst documentation file explaining how to upgrade between
  470. pagure releases
  471. * Tue Mar 01 2016 Pierre-Yves Chibon <pingou@pingoured.fr> - 1.2-1
  472. - Update to 1.2
  473. - Add the possibility to create a comment when opening a pull-request (Clement
  474. Verna)
  475. - Fix creating PR from a fork directly from the page listing all the PR on the
  476. main project (Ryan Lerch)
  477. - Color the label showing the issues' status on the issue page and the page
  478. listing them (Ryan Lerch)
  479. - Add a small padding at the bottom of the blockquote (Ryan Lerch)
  480. - In the list of closed PR, replace the column of the assignee with the date of
  481. closing (Ryan Lerch)
  482. - Drop font awesome since we no longer use it and compress the png of the
  483. current logo (Ryan Lerch)
  484. - Drop the svg of the old logo from the source (Ryan Lerch)
  485. - Add descriptions to the git hooks in the settings page (farhaanbukhsh)
  486. - Fix the pagure git hook
  487. * Wed Feb 24 2016 Pierre-Yves Chibon <pingou@pingoured.fr> - 1.1.1-1
  488. - Update to 1.1.1
  489. - Fix showing some files where decoding to UTF-8 was failing
  490. - Avoid adding a notification to a PR for nothing
  491. - Show notifications correctly on the PR page when received via SSE
  492. * Tue Feb 23 2016 Pierre-Yves Chibon <pingou@pingoured.fr> - 1.1-1
  493. - Update to 1.1
  494. - Sort the release by commit time rather than name (Clerment Verna)
  495. - Add a link to the markdown syntax we support
  496. - Add the possibility to display custom info when creating a new PR
  497. - Improve the title of the issue page
  498. - Make the ssh_info page more flexible so that we can add new info more easily
  499. - Add the possibility to resend a confirmation email when adding a new email
  500. address
  501. - Encode the email in UTF-8 for domain name supporting it
  502. - Add a button to easily change your avatar in your settings' page (Clement
  503. Verna)
  504. - Expand our markdown processor to support implicit linking to both PR and
  505. issues
  506. - Fix running the unit-tests on F23
  507. - Fix deleting in the UI branches containing a slash ('/') in their name
  508. - Add the possibility to always have a merge commit when merging a PR
  509. - Add the project's avatar to the list in front page when authenticated
  510. - Make the dependency on flask-fas-openid (part of python-fedora) optional
  511. - Prevent our customized markdown to create link on foo.com if it doesn't start
  512. with {f,ht}tp(s) (Clement Verna)
  513. - Bring back the delete ticket button (Ryan Lerch)
  514. - Add the possibility to notify someone when it is mentioned in a comment via
  515. @username
  516. - Fix setting the default value of the web-hook setting and its display in the
  517. settings page
  518. - Add the possibility to have templates for the issues
  519. - Add a button on the doc page to open it in a new tab
  520. - Add the concept of notifications on PR allowing to indicate when a PR is
  521. updated or rebased
  522. - Fix allowing people with non-ascii username to merge PR with a merge commit
  523. - Add the possibility to theme your pagure instance and customized its layout at
  524. will
  525. - Add the possibility to always see inline-comments even if the file was changed
  526. since
  527. - Improve the error message given to the user upon error 500 (Patrick Uiterwijk)
  528. - Stop relying on pygit2 to determine if a file is a binary file or not and
  529. instead use the python library binaryornot
  530. - Store in the DB the identifier of the tree when an inline comment is made to a
  531. PR, this way it will be simpler to figure out a way to add the context of this
  532. comment either by email on in the UI
  533. - Add styling to blockquotes so that we see what is the quote and what is the
  534. answer when replying to someone
  535. - Prevent users from adding again an email pending confirmation
  536. - Fix the preview box for long comment (Ryan Lerch)
  537. - Add the possibility to sort the projects when browsing them (Ryan Lerch)
  538. * Thu Feb 04 2016 Pierre-Yves Chibon <pingou@pingoured.fr> - 1.0.2-1
  539. - Update to 1.0.2
  540. - Rework the PR page (Ryan Lerch)
  541. - Add ssh_info to blacklist in default config (Ryan Lerch)
  542. - Restyle the ssh_info page (Ryan Lerch)
  543. - Fix hiding the preview pane when creating an issue (Ryan Lerch)
  544. - Indicate the number of comments on the PR when listing them (Ryan Lerch)
  545. - Fix showing the links to issues when previewing a comment
  546. - Ensure some more that the page number isn't below 1
  547. - Do not show the edit and delete buttons to everyone when adding a comment via
  548. SSE
  549. - Update the requirements.txt for a missing dependency on Ubuntu (vanzhiganov)
  550. - Improving sorting the release tags in the release page (Clement Verna)
  551. * Mon Feb 01 2016 Pierre-Yves Chibon <pingou@pingoured.fr> - 1.0.1-1
  552. - Update to 1.0.1
  553. - Improve the fork list (Ryan Lerch)
  554. - Make sure the images on comments do not exceed the size of the comment
  555. box/area (Ryan Lerch)
  556. - Improve the page listing all issues (Ryan Lerch)
  557. - Include the project information when sending a fedmsg message about editing a
  558. comment
  559. - Allow <span> tags in rst files so that the README shows fine
  560. - Fix linking directly to a specific comment in a PR
  561. - Fix adding comment in a PR via SSE
  562. - Fix updating issue information via SSE
  563. - Fix the reply buttons on the issue page
  564. - Remove the choice for a status when creating a new ticket (Farhaandukhsh)
  565. - Fix deleting a branch from the UI
  566. - Make the cards have rounded corners (Sayan Chowdhury)
  567. - Fix showing the description of form field (Vivek Anand)
  568. - Fix checking if the passwords added are the same (for local accounts)
  569. (Vivek Anand)
  570. - Fix displaying emojis when previewing a comment on a ticket (Clement Verna)
  571. - Add support for emojis when creating a new ticket (Clement Verna)
  572. * Wed Jan 27 2016 Pierre-Yves Chibon <pingou@pingoured.fr> - 1.0-1
  573. - Update to 1.0
  574. - Entirely new UI thanks to the hard work on Ryan Lerch
  575. - Add the possibility to edit comments on PR/Tickets (and the option to disable
  576. this) (farhaanbukhsh)
  577. - Add the number of open Tickets/PR on the project's menu
  578. - Also allow PRs to be closed via a git commit message (Patrick Uiterwijk)
  579. - Disable issues and PR on forks by default (Vivek Anand)
  580. - Fix deleting the temporary folders we create
  581. - Un-bundle flask_fas_openid (requires python-fedora 0.7.0 or higher
  582. - Add support for an openid backend (ie same thing as FAS but w/o the FPCA
  583. enforcing)
  584. - Add support to view rst/markdown files as html directly inline (default) or as
  585. text (Yves Martin)
  586. - Change the encryption system when using pagure with local auth to not be
  587. time-sensitive and be stronger in general (farhaanbukhsh)
  588. - Change the size of the varchar from 256 to 255 for a better MySQL support
  589. - Add support for pagure to work behind a reverse proxy
  590. - Rename the cla_required decorator to a more appropriate login_required
  591. - Show the in the front page and the page listing all the pull-requests the
  592. branch for which a PR can be opened
  593. - Rework the avatar to not rely on the ones associated with id.fedoraproject.org
  594. - Add support to high-light a section of code in a PR and show the diff
  595. automatically if there is such selection
  596. * Mon Dec 14 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1.36-1
  597. - Update to 0.1.36
  598. - Add the ssh info on the front page if the repo is empty
  599. - Make the code handling exception be python3 compatible
  600. - Make pagure compatible with F23 (ie: pygit2 0.23.0)
  601. - Fix pagination when rendering the repo blocks (Gaurav Kumar)
  602. - Make the SHOW_PROJECTS_INDEX list what should be showing in the index page
  603. - Adjust pagure to work on recent version of psutils as well as the old one
  604. - Added 'projects' to the blacklisted list of projects (Gaurav Kumar)
  605. - Removed delete icons for non group members on the group info page (Gaurav
  606. Kumar)
  607. - Fixed forbidden error for PR title editing (Gaurav Kumar)
  608. * Mon Nov 30 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1.35-1
  609. - Update to 0.1.35
  610. - Fix the web-hook server by preventing it to raise any exception (rather log
  611. the errors)
  612. * Mon Nov 30 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1.34-1
  613. - Update to 0.1.34
  614. - Fix the encoding of the files we're displaying on the UI
  615. - Fix commenting on the last line of a diff
  616. - Fix returning error message from the internal API (shows the PR as conflicting
  617. then)
  618. - Fix stacktrace encountered in some repo if the content of a folder is empty
  619. (or is a git submodule)
  620. - Split the web-hooks into their own server
  621. - If you try to fork a forked project, redirect the user to the fork
  622. - Show the repo from and repo to when opening a new PR
  623. - Add the pagination links at the bottom of the repo list as well
  624. - Add the groups to the pool of users to notify upon changes to a project
  625. - Hide private repo from user who do not have commit access
  626. * Fri Nov 20 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1.33-1
  627. - Update to 0.1.33
  628. - Prevent project with a name starting with a non-alphanumerical character
  629. (Farhaanbukhsh)
  630. - Ensure we appropriately set the private flag when creating an issue
  631. - Add an activity graph on the user profile using datagrepper
  632. - Sometime the identified we get is a Tag, not a commit (fixes traceback
  633. received by email)
  634. - Order the PR from the most recent to the oldest
  635. - Fix the patch view of a PR when we cannot find one of the commit (fixes
  636. traceback received by email)
  637. - Allow user that are not admin to create a remote pull-request
  638. - Fix closing the EV server by calling the appropriate variable
  639. - Fix generating the diff of remote pull-request
  640. * Fri Nov 13 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1.32-1
  641. - Update to 0.1.32
  642. - Fix the example configuration file
  643. - Make pagure work on MySQL
  644. - Hide sections on the front page only if the user is logged out
  645. - Fix the release page where sometime tags are commits
  646. - Escape the raw html in markdown
  647. - Decode the bytes returned by pygit2 to try to guess if the content is a text
  648. or not
  649. - Fix the 'Clear' button on the pull-request page (farhaanbukhsh)
  650. - Fix installing pagure in a venv
  651. - Fix uploading images when editing the first comment of a ticket
  652. - Let the author of the merge commit be the user doing the merge
  653. - Suggest the title of the PR only if it has one and only one commit in
  654. - Do not hide sections on the user page if we set some to be hidden on the front
  655. page
  656. - Forward the head to the commits page to fix the pull-request button
  657. - Ensure we create the git-daemon-export-ok when forking a repo (fixes cloning
  658. over https)
  659. - Add instructions on how to get pagure working in a venv (Daniel Mach)
  660. - Improve the way we retrieve and check pygit2's version (Daniel Mach)
  661. * Tue Oct 13 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1.31-1
  662. - Forward the bail_on_tree boolean when iterating so that we know how to behave
  663. when we run into a git tree (where we expected a git blob)
  664. -> fixes error received by email
  665. * Tue Oct 13 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1.30-1
  666. - Fix error received by email by checking the right variable if it is a git tree
  667. or a git blob
  668. - Unless we explicitly accept all images tag, always filter them (fixes
  669. attaching images to a ticket)
  670. * Tue Oct 13 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1.29-1
  671. - Use monospace fonts for online editing as well as comment on tickets and
  672. pull-requests
  673. - Fix online editing of symlinked files (such as the README)
  674. - Handle potential error when converting from rst to html
  675. * Mon Oct 12 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1.28-1
  676. - Update to 0.1.28
  677. - Fix the call to noJS() in the pull-request template to avoid crashing
  678. - Improve the runserver script in the sources
  679. - Fix the projects pagination on the index page
  680. - Create the git-daemon-export-ok file upon creating a new project/git
  681. - Use first line of commit message for PR title when only one commit (Maciej
  682. Lasyk)
  683. - Show the tag message near the tag in the release page
  684. - Set the default_email when creating a local user account
  685. * Mon Oct 05 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1.27-1
  686. - Update to 0.1.27
  687. - Skip writing empty ssh keys on disc
  688. - Regenerate authorized_keys file on ssh key change (Patrick Uiterwijk)
  689. * Mon Oct 05 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1.26-1
  690. - Update to 0.1.26
  691. - Let admins close PRs as well
  692. * Mon Oct 05 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1.25-1
  693. - Update to 0.1.25
  694. - Improve the documentation (especially the part about configuring pagure and
  695. all the options the configuration file supports)
  696. - Remove the two trailing empty lines when showing a file online
  697. - Add a link on the issue list to be able to filter all the unassigned issues
  698. - Rework the layout of the pull-request page
  699. - Rework the commit list in the PR page to allow showing the entire commit
  700. message
  701. - Let any user create remote pull-request otherwise what's the point?
  702. - Add the possibility to edit the title of a pull-request
  703. - Add a page listing all the pull-requests of an user (opened by or against)
  704. - Add support for multiple ssh-keys (Patrick Uiterwijk)
  705. - Ensure the authorized_keys file is generated by gitolite (Patrick Uiterwijk)
  706. - Fix the regex for @<username>
  707. - Improve the display of renamed files in PR
  708. - Add option to disable entirely the user/group management from the UI
  709. - Add an updated_on field to Pull-Request
  710. - Add an closed_at field to Pull-Request
  711. - Allow the submitter of a PR to close it (w/o merging it)
  712. - Disable editing a pull-request when that one is closed/merged
  713. - Add option to hide by default a part of the index page (ie: all the repos, the
  714. user's repos or the user's forks)
  715. - Drop the csrf_token from the error emails sent to the admins
  716. * Tue Sep 08 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1.24-1
  717. - Update to 0.1.24
  718. - Fix changelog to add the -release
  719. - Block the <img> tag on titles
  720. - Better fedmsg notifications (for example for new branches or rebase)
  721. - Support uploading multiple files at once
  722. - Add a load_from_disk utility script to the sources
  723. - Fix indentation to the right on very long pull-request
  724. * Sun Aug 30 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1.23-1
  725. - Update to 0.1.23
  726. - Return a 404 error if we can't find the doc repo asked
  727. - Fix for #106 Allow setting the default branch of the git repo and in the UI
  728. (Ghost-script)
  729. - Improve unit-tests suite
  730. - Add a global boolean to disable entirely tickets on all projects of a pagure
  731. instance (with no way to re-set them per project)
  732. - Do display uploading a tarball if it is not entirely configured
  733. - Ensure we do not offer to reply by email if the milter is not set up
  734. - Ensure there is no new line character on the msg-id and improve logging in the
  735. milter
  736. - Add a configuration key to globally disable creating projects
  737. - Add a configuration key to globally disable deleting projects
  738. - Add the possibility to search projects/users
  739. - Drop links to the individual commits in a remote pull-request
  740. - Input that are cleaned via the noJS filter are safe to be displayed (avoid
  741. double HTML escaping)
  742. - When writing the authorized_key file, encode the data in UTF-8
  743. - Makes page title easier to find in multi-tab cases (dhrish20)
  744. - Fix authorized_keys file creation (Patrick Uiterwijk)
  745. - Honor also symlinked README's in repo overview (Jan Pakorný)
  746. - Fix the patch generation for remote PR
  747. - Fix showing the comment's preview on the pull-request page
  748. - Fix bug in checking if a PR can be merged
  749. * Fri Aug 07 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1.22-1
  750. - Update to 0.1.22
  751. - Adjust the README to the current state of pagure
  752. - Rework how we integrate our custom tags into markdown to avoid the infinite
  753. loop we run into once in a while
  754. * Wed Aug 05 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1.21-1
  755. - Update to 0.1.21
  756. - Make SSH protocol explicit for SSH URLs (Till Maas)
  757. - Adjust the documentation (layout and content)
  758. - Rework the doc server to allow showing html files directly
  759. - Fix installing the pagure hook correctly (tickets and requests)
  760. - Give proper attribution to the pagure logo to Micah Deen in the documentation
  761. - Increase pull request text field lengths to 80 (Till Maas)
  762. - Fix who can open a remote PR and the check that the repo allows PR
  763. - If there is no commit and no content, it means we didn't find the file: 404
  764. * Wed Jul 29 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1.20-1
  765. - Update to 0.1.20
  766. - Include the tags in the JSON representation of a project
  767. - Add the ability to open a pull-request from a git repo not hosted on pagure
  768. - Fix pagination when browsing the list of commits
  769. - Fix the fork button when viewing the Settings of a project
  770. - Adjust the example apache configuration file
  771. - Add a favicon with pagure's logo
  772. - Fix asynchronous commentting on pull-requests
  773. - Start working on some documentation on how to install pagure
  774. - Do no flash messages when a comment is submitted via javascript (ie: async)
  775. - Do not blink the tittle of the page if the page is already on focus
  776. - Retrieve ssh key from FAS and set it up in pagure if none is currently set-up
  777. - Fix anchors for comments on the pull-request pages
  778. - Fix checking the merge status of a PR when user is not logged in
  779. * Mon Jul 20 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1.19-1
  780. - Update to 0.1.19
  781. - Prettify the JSON stored in the git for tickets/requests... (Simo Sorce)
  782. - Use the project name as subject tag in the notifications sent (Simo Sorce)
  783. - Add an X-pagure header with either the pagure instance or the project name
  784. - Reset the merge status of all the open PR when one is merged
  785. - Add a second server listing the number of connections opened on the first
  786. eventsource server
  787. - Log the info instead of printing them in the eventsource server
  788. - Split the documentation to a different wsgi application to avoid any risk of
  789. cross-site forgery
  790. - Fix the JS logic when adding a tag or a dependency to avoid having duplicates
  791. in the input field
  792. - Allow deleting a git branch of a project via the UI
  793. - Include the font-awesome in the source rather than relying on an external cdn
  794. - Do not try to connect to the eventsource server if we're not viewing a
  795. pull-request
  796. - Fix showing the first comment made on a PR via the eventsource server
  797. - Fix showing the git URLs in the doc server
  798. - Much better API documentation (Lei Yang)
  799. - Handle showing closed PR that were not merged
  800. - Fix refreshing the UI of private tickets via the eventsource (making calls to
  801. the API to get the info while only getting what changed via the SSE)
  802. - Fix the anchor links in the API documentation
  803. - Blink the tab upon changes in the page
  804. - Ensure we close both SSE server when stopping pagure_ev
  805. - Let the HTML form trigger if we did not connect to the EV server successfully
  806. - The admins of a repo are anyone with commit access to the repo, directly or
  807. via a group
  808. - Order the project by names in the front page (instead of creation date)
  809. - Add the ability to tag a project
  810. - Fix the fedmsg_hook when there are only deletions or only additions
  811. - Add a new API endpoint allowing to search projects (by name, author, tag ...)
  812. - Make pagure compatible with pygit 0.22.0
  813. - Adjust unit-tests for all these changes
  814. * Mon Jun 22 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1.18-1
  815. - Update to 0.1.18
  816. - Fix the eventsource server for CORS
  817. - Fix showing/checking the merge status of a PR
  818. * Mon Jun 22 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1.17-1
  819. - Update to 0.1.17
  820. - Fix for missing docs of API issue add comment (Kunaal Jain)
  821. - Fix the systemd init file
  822. - Be more careful about the URL specified, it may be of the wrong format in the
  823. eventsource server
  824. - Allow configuring the port where the event source server runs in the
  825. configuration
  826. - Fix bug in filter_img_src introduced with its moved to the backend library
  827. * Thu Jun 18 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1.16-1
  828. - Update to 0.1.16
  829. - Clone all the remote branches when cloning a project
  830. - Allow online editing to a new branch or any of the existing ones
  831. - Allow the <hr /> html tags in markdown
  832. - Add eventsource support in the ticket and pull-request pages
  833. * Tue Jun 16 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1.15-1
  834. - Update 0.1.15
  835. - Use a monospace font for the commit hash
  836. - Remove duplicated "commit" id in the HTML (causing a graphical bug in the
  837. commit page)
  838. - Secure the input using the no_js filter instead of relying on a restrictive
  839. regex for PR and issue titles
  840. - Support ',' in the tags field since it's required to specify multiple tags
  841. * Fri Jun 12 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1.14-1
  842. - Update to 0.1.14
  843. - Remove all new lines characters from the ssh key uploaded
  844. - Adjust the URL in the footer to point to https://pagure.io/pagure
  845. - Fix displaying the time of a comment
  846. - Forbid the use of spaces in group name
  847. - Do not get the list of not-merged commits if there is only 1 branch in the
  848. repo
  849. - Display the error message if pagure.lib.add_group raises an exception
  850. - Add a new setting enforcing that all commits in a PR are signed-off by their
  851. author
  852. - Enforce that all commits are signed-off by the author if the repo is
  853. configured for this
  854. - Also check for the signed-off status before merging a pull-request
  855. - Adjust online-editing to allow specifying which email address to use in the
  856. commit
  857. - Add an avatar_email field to projects
  858. - Change the PullRequest's status from a Boolean to a Text restricted at the DB
  859. level (Allows to distinguish Open/Merged/Closed)
  860. - Show in the pull-request view who merged the pull-request
  861. - Specify who closed the pull-request in the API output
  862. - Catch GitError when merging and checking merge status of a PR
  863. - Hide the form to create pull-requests if the user is not an admin of the repo
  864. - Replace the Pull-Request button by a Compare button if the user it not a repo
  865. admin
  866. - Set the title of the tab as URL hash to allow directly linking to it
  867. - Adjust the API to be able to distinguish API authentication and UI
  868. authentication
  869. - Fix API documentation to create new issues
  870. - Drop the status from the requirements to open a new issue via the API
  871. - Expand the list of blacklisted project names
  872. - Have the code tags behave like pre tags (html tags)
  873. - Allow project to specify an URL and display it on their page
  874. - Strip the ssh keys when writing them to the authorized_keys file
  875. - Disable javascript in all the markdown fields
  876. - Validate early the input submitted in the forms (using more or less strict
  877. regex)
  878. - If the session timed-out, redirect to the setting page after authentication
  879. and inform the user that the action was canceled
  880. - Catch PagureException when adjusting the project's settings
  881. - Redirect the /api endpoint to the api documentation place
  882. - Fix how is retrieved the list of emails to send the notification to
  883. - Sanitize the html using bleach to avoid potential XSS exploit
  884. - Do not give READ access to everyone on the tickets and pull-requests repos to
  885. avoid leaking private tickets
  886. - Adjust the unit-tests for all these changes
  887. * Fri Jun 05 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1.13-1
  888. - Update to 0.1.13
  889. - Do not show the edit button if the user cannot edit the file
  890. - Fix who is allowed to drop comments
  891. - Fix showing the drop comment button on issue comments
  892. - Fix creating the pull-request for fast people like @lmacken
  893. - Display the target of the PR as well as the origin in the PR page
  894. - Limit the size of the lists on the front page
  895. * Fri Jun 05 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1.12-1
  896. - Update to 0.1.12
  897. - Fix the URL where the sources upload are done
  898. - Upload the new sources under the project's name (be it project or
  899. user/project)
  900. * Fri Jun 05 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1.11-1
  901. - Update to 0.1.11
  902. - Another fix for the fedmsg_hook git hook
  903. - Adjust how we display the README page to avoid XSS there as well
  904. - Add the possibility to disable plugins via the configuration file
  905. - Present the git tags in the UI
  906. - As soon as the API user present a token, validate it or not, even if the
  907. endpoint would work without token
  908. - Integrate alembic for DB scheme migration
  909. - Cache the PR's merge status into the DB
  910. - Only people with access to the project can add/remove API token
  911. - Make the unit-tests run on bare repos as in prod
  912. - First stab at online editing
  913. - Simplify the API output to drop the project's settings where it doesn't
  914. make sense
  915. - First stag at allowing upstream to upload their release to pagure
  916. - Fix merging a PR into another branch than master
  917. - Reduce code duplication when checking if a PR can be merged or merging it
  918. - Code style clean-up
  919. * Tue Jun 02 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1.10-1
  920. - Update to 0.1.10
  921. - Add support for URL ending with a trailing slash where it makes sense (so
  922. we support both with and without trailing slash)
  923. - Fix XSS issue by disabling <script> tags in the documentation pages
  924. - Expend the unit-test suite for the api.project controller
  925. - Add the possibility for 3rd party apps to 'flag' a pull-request with for
  926. example the result of a build
  927. - Handle the situation where there are multiple branch of the same name in
  928. the same repo
  929. - Fix the color of the link on hover when displayed within a tab view
  930. (for example in the PR pages)
  931. - Redirect the user to the pull-request created after its the creation
  932. - Do not leak emails over fedmsg
  933. - Fix the fedmsg_hook plugin
  934. * Fri May 29 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1.9-1
  935. - Update to 0.1.9
  936. - Initial API work
  937. - Document the initial API
  938. - Fix the CSS to present the links correctly
  939. - Add new API endpoint to list the git tags of a project
  940. - Ensure the DB is updated regarding the start and stop commits before merging
  941. * Wed May 27 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1.8-1
  942. - Update 0.1.8
  943. - Add the possibility to do Asynchronous in-line comment posting
  944. (Patrick Uiterwijk)
  945. - Handle the situation where the branch asked is not found in the git repo
  946. - Handle the situation where we cannot find a desired commit
  947. - Do not display a value in the settings page if there are none
  948. - Rework the pull-request view to move the list of commits into a tab
  949. - Make email sending optional (Patrick Uiterwijk)
  950. * Fri May 22 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1.7-1
  951. - Update to 0.1.7
  952. - Drop debugging code on the milter and the hooks
  953. - Adjust the search_issues method to support filter for some tags, excluding
  954. some others (for example ?tags=easfix&tags=!0.2)
  955. - Support groups when searching an user's projects (ie: finding the projects an
  956. user has access to via the group their are in)
  957. - Do not load the git repo from the FS when loading an user's page
  958. - Present and document the SSH keys in a dedicated documentation page
  959. * Wed May 20 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1.6-1
  960. - Update to 0.1.6
  961. - Fix sending notification emails to multiple users, avoid sending private into
  962. to all of them
  963. * Tue May 19 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1.5-1
  964. - Update to 0.1.5
  965. - Bug fix on the milter and the internal API endpoint
  966. * Tue May 19 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1.4-1
  967. - Update to 0.1.4
  968. - Fix loading requests and tickets from git (allows syncing projects between
  969. pagure instances)
  970. - Add to the template .wsgi file a way to re-locate the tmp folder to work
  971. around a bug in libgit2
  972. - Fix unit-tests suite
  973. - Adjust the spec file to install all the files required for the milters
  974. - Fix the `View` button on the pull-request pages
  975. * Wed May 13 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1.3-1
  976. - Update to 0.1.3
  977. - Add support for gitolite3
  978. - Fix unit-tests suite to work on jenkins
  979. * Sat May 09 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1.2-2
  980. - Fix the Requires on the milter subpackage (adding: post, preun and postun)
  981. - Add systemd scriptlet to restart the service gracefully
  982. - Use versioned python macro (py2)
  983. - Ship the license in the milter subpackage as well
  984. - Use the %%license macro
  985. * Thu May 07 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1.2-1
  986. - Update to 0.1.2
  987. - Fix bug in the fedmsg hook file (Thanks Zbigniew Jędrzejewski-Szmek)
  988. * Wed May 06 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1.1-1
  989. - Update to 0.1.1
  990. - Port to python-munch and list it in the dependencies
  991. - Fix exporting patch when they contain unicode characters or accent
  992. - After creating an issue, user is brought back to the new issue page
  993. - Fix unit-tests
  994. - Stop the pagure hook if the user is deleting a branch (no need to run through
  995. all the commits of that branch)
  996. - Fix the requirements.txt file (Sayan Chowdhury)
  997. - Fix the tree page to show the commit sha on its proper line (Sayan Chowdhury)
  998. - Fix typo in the form of some of the plugin (Sayan Chowdhury)
  999. - Improve the README (Sayan Chowdhury)
  1000. - Fix highlighting the commits tab when accessing it (Sayan Chowdhury)
  1001. * Mon May 04 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1-1
  1002. - First official release: 0.1
  1003. * Thu Apr 02 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.0-1.20150402
  1004. - Cut a RPM for testing on Thu Apr 2nd 2015
  1005. * Wed Oct 08 2014 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.0-1.20141008
  1006. - Initial packaging work for Fedora