pagure.spec 113 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457
  1. %{?python_enable_dependency_generator}
  2. %if 0%{?rhel} && 0%{?rhel} < 8
  3. # Since the Python 3 stack in EPEL is missing too many dependencies,
  4. # we're sticking with Python 2 there for now.
  5. %global __python %{__python2}
  6. %global python_pkgversion %{nil}
  7. %else
  8. # Default to Python 3 when not EL
  9. %global __python %{__python3}
  10. %global python_pkgversion %{python3_pkgversion}
  11. %endif
  12. # For now, to keep behavior consistent
  13. %global _python_bytecompile_extra 1
  14. Name: pagure
  15. Version: 5.11.3
  16. Release: 1%{?dist}
  17. Summary: A git-centered forge
  18. License: GPLv2+
  19. URL: https://pagure.io/pagure
  20. Source0: https://pagure.io/releases/pagure/%{name}-%{version}.tar.gz
  21. BuildArch: noarch
  22. BuildRequires: systemd-devel
  23. BuildRequires: systemd
  24. BuildRequires: python%{python_pkgversion}-devel
  25. BuildRequires: python%{python_pkgversion}-setuptools
  26. %if 0%{?rhel} && 0%{?rhel} < 8
  27. # Required only for the `fas` and `openid` authentication backends
  28. Requires: python%{python_pkgversion}-fedora-flask
  29. # Required only for the `oidc` authentication backend
  30. # flask-oidc
  31. # Required only if `USE_FLASK_SESSION_EXT` is set to `True`
  32. # flask-session
  33. %else
  34. Recommends: python%{python_pkgversion}-fedora-flask
  35. %endif
  36. # We require OpenSSH 7.4+ for SHA256 support
  37. Requires: openssh >= 7.4
  38. %if %{undefined python_enable_dependency_generator} && %{undefined python_disable_dependency_generator}
  39. Requires: python%{python_pkgversion}-alembic
  40. Requires: python%{python_pkgversion}-arrow
  41. Requires: python%{python_pkgversion}-bcrypt
  42. Requires: python%{python_pkgversion}-binaryornot
  43. Requires: python%{python_pkgversion}-bleach
  44. Requires: python%{python_pkgversion}-blinker
  45. Requires: python%{python_pkgversion}-celery
  46. Requires: python%{python_pkgversion}-chardet
  47. Requires: python%{python_pkgversion}-cryptography
  48. Requires: python%{python_pkgversion}-docutils
  49. %if ! (0%{?rhel} && 0%{?rhel} < 8)
  50. Requires: python%{python_pkgversion}-email-validator
  51. %endif
  52. Requires: python%{python_pkgversion}-enum34
  53. Requires: python%{python_pkgversion}-flask
  54. Requires: python%{python_pkgversion}-flask-wtf
  55. Requires: python%{python_pkgversion}-markdown
  56. Requires: python%{python_pkgversion}-munch
  57. Requires: python%{python_pkgversion}-pillow
  58. Requires: python%{python_pkgversion}-psutil
  59. Requires: python%{python_pkgversion}-pygit2 >= 0.26.0
  60. Requires: python%{python_pkgversion}-openid
  61. Requires: python%{python_pkgversion}-openid-cla
  62. Requires: python%{python_pkgversion}-openid-teams
  63. Requires: python%{python_pkgversion}-redis
  64. Requires: python%{python_pkgversion}-requests
  65. Requires: python%{python_pkgversion}-six
  66. Requires: python%{python_pkgversion}-sqlalchemy >= 0.8
  67. Requires: python%{python_pkgversion}-straight-plugin
  68. Requires: python%{python_pkgversion}-whitenoise
  69. Requires: python%{python_pkgversion}-wtforms
  70. %endif
  71. %{?systemd_requires}
  72. # No dependency of the app per se, but required to make it working.
  73. Requires: gitolite3
  74. %description
  75. Pagure is a light-weight git-centered forge based on pygit2.
  76. Currently, Pagure offers a web-interface for git repositories, a ticket
  77. system and possibilities to create new projects, fork existing ones and
  78. create/merge pull-requests across or within projects.
  79. %package web-apache-httpd
  80. Summary: Apache HTTPD configuration for Pagure
  81. BuildArch: noarch
  82. Requires: %{name} = %{version}-%{release}
  83. %if 0%{?rhel} && 0%{?rhel} < 8
  84. Requires: mod_wsgi
  85. %else
  86. Requires: httpd-filesystem
  87. Requires: python%{python_pkgversion}-mod_wsgi
  88. %endif
  89. %description web-apache-httpd
  90. This package provides the configuration files for deploying
  91. a Pagure server using the Apache HTTPD server.
  92. %package web-nginx
  93. Summary: Nginx configuration for Pagure
  94. BuildArch: noarch
  95. Requires: %{name} = %{version}-%{release}
  96. Requires: nginx-filesystem
  97. Requires: python%{python_pkgversion}-gunicorn
  98. %description web-nginx
  99. This package provides the configuration files for deploying
  100. a Pagure server using the Nginx web server.
  101. %package theme-pagureio
  102. Summary: Web interface theme used for Pagure.io
  103. BuildArch: noarch
  104. Requires: %{name} = %{version}-%{release}
  105. %description theme-pagureio
  106. This package provides the web interface assets for styling
  107. a Pagure server with the same look and feel as Pagure.io.
  108. %package theme-srcfpo
  109. Summary: Web interface theme used for src.fedoraproject.org
  110. BuildArch: noarch
  111. Requires: %{name} = %{version}-%{release}
  112. %description theme-srcfpo
  113. This package provides the web interface assets for styling
  114. a Pagure server with the same look and feel as src.fedoraproject.org.
  115. %package theme-chameleon
  116. Summary: Web interface based on openSUSE's chameleon theme
  117. BuildArch: noarch
  118. Requires: %{name} = %{version}-%{release}
  119. %description theme-chameleon
  120. This package provides the web interface assets for styling
  121. a Pagure server with the same look and feel as openSUSE Infrastructure.
  122. %package milters
  123. Summary: Milter to integrate pagure with emails
  124. BuildArch: noarch
  125. Requires: %{name} = %{version}-%{release}
  126. Requires: python%{python_pkgversion}-pymilter
  127. %{?systemd_requires}
  128. # It would work with sendmail but we configure things (like the tempfile)
  129. # to work with postfix
  130. Requires: postfix
  131. %description milters
  132. Milters (Mail filters) allowing the integration of pagure and emails.
  133. This is useful for example to allow commenting on a ticket by email.
  134. %package ev
  135. Summary: EventSource server for pagure
  136. BuildArch: noarch
  137. Requires: %{name} = %{version}-%{release}
  138. Requires: python%{python_pkgversion}-trololio
  139. %{?systemd_requires}
  140. %description ev
  141. Pagure comes with an eventsource server allowing live update of the pages
  142. supporting it. This package provides it.
  143. %package webhook
  144. Summary: Web-Hook server for pagure
  145. BuildArch: noarch
  146. Requires: %{name} = %{version}-%{release}
  147. %{?systemd_requires}
  148. %description webhook
  149. Pagure comes with an webhook server allowing http callbacks for any action
  150. done on a project. This package provides it.
  151. %package ci
  152. Summary: A CI service for pagure
  153. BuildArch: noarch
  154. Requires: %{name} = %{version}-%{release}
  155. Requires: python%{python_pkgversion}-cryptography
  156. Requires: python%{python_pkgversion}-jenkins
  157. %{?systemd_requires}
  158. %description ci
  159. Pagure comes with a continuous integration service, currently supporting
  160. only jenkins but extendable to others.
  161. With this service, your CI server will be able to report the results of the
  162. build on the pull-requests opened to your project.
  163. %package logcom
  164. Summary: The logcom service for pagure
  165. BuildArch: noarch
  166. Requires: %{name} = %{version}-%{release}
  167. %{?systemd_requires}
  168. %description logcom
  169. pagure-logcom contains the service that logs commits into the database so that
  170. the activity calendar heatmap is filled.
  171. %package loadjson
  172. Summary: The loadjson service for pagure
  173. BuildArch: noarch
  174. Requires: %{name} = %{version}-%{release}
  175. %{?systemd_requires}
  176. %description loadjson
  177. pagure-loadjson is the service allowing to update the database with the
  178. information provided in the JSON blobs that are stored in the tickets (and
  179. in the future pull-requests) git repo.
  180. %package mirror
  181. Summary: The mirroring service for pagure
  182. BuildArch: noarch
  183. Requires: %{name} = %{version}-%{release}
  184. %{?systemd_requires}
  185. %description mirror
  186. pagure-mirror is the service mirroring projects that asked for it outside
  187. of this pagure instance.
  188. %prep
  189. %autosetup -p1
  190. %if 0%{?rhel} && 0%{?rhel} < 8
  191. # Fix requirements.txt for EL7 setuptools
  192. ## Remove environment markers, as they're not supported
  193. sed -e "s/;python_version.*$//g" -i requirements.txt
  194. ## Drop email-validator requirement
  195. sed -e "s/^email_validator.*//g" -i requirements.txt
  196. ## Drop python3-openid requirement
  197. sed -e "s/^python3-openid$//g" -i requirements.txt
  198. %endif
  199. %build
  200. %py_build
  201. %install
  202. %py_install
  203. # Install apache configuration file
  204. mkdir -p $RPM_BUILD_ROOT/%{_sysconfdir}/httpd/conf.d/
  205. install -p -m 644 files/pagure-apache-httpd.conf $RPM_BUILD_ROOT/%{_sysconfdir}/httpd/conf.d/pagure.conf
  206. # Install nginx configuration file
  207. mkdir -p $RPM_BUILD_ROOT/%{_sysconfdir}/nginx/conf.d/
  208. install -p -m 644 files/pagure-nginx.conf $RPM_BUILD_ROOT/%{_sysconfdir}/nginx/conf.d/pagure.conf
  209. # Install configuration file
  210. mkdir -p $RPM_BUILD_ROOT/%{_sysconfdir}/pagure
  211. install -p -m 644 files/pagure.cfg.sample $RPM_BUILD_ROOT/%{_sysconfdir}/pagure/pagure.cfg
  212. # Install WSGI file
  213. mkdir -p $RPM_BUILD_ROOT/%{_datadir}/pagure
  214. install -p -m 644 files/pagure.wsgi $RPM_BUILD_ROOT/%{_datadir}/pagure/pagure.wsgi
  215. install -p -m 644 files/doc_pagure.wsgi $RPM_BUILD_ROOT/%{_datadir}/pagure/doc_pagure.wsgi
  216. # Install the createdb script
  217. install -p -m 644 createdb.py $RPM_BUILD_ROOT/%{_datadir}/pagure/pagure_createdb.py
  218. # Install the api_key_expire_mail.py script
  219. install -p -m 644 files/api_key_expire_mail.py $RPM_BUILD_ROOT/%{_datadir}/pagure/api_key_expire_mail.py
  220. # Install the mirror_project_in.py script
  221. install -p -m 644 files/mirror_project_in.py $RPM_BUILD_ROOT/%{_datadir}/pagure/mirror_project_in.py
  222. # Install the keyhelper and aclcheck scripts
  223. mkdir -p $RPM_BUILD_ROOT/%{_libexecdir}/pagure/
  224. install -p -m 755 files/aclchecker.py $RPM_BUILD_ROOT/%{_libexecdir}/pagure/aclchecker.py
  225. install -p -m 755 files/keyhelper.py $RPM_BUILD_ROOT/%{_libexecdir}/pagure/keyhelper.py
  226. # Install the alembic configuration file
  227. install -p -m 644 files/alembic.ini $RPM_BUILD_ROOT/%{_sysconfdir}/pagure/alembic.ini
  228. # Install the alembic revisions
  229. cp -r alembic $RPM_BUILD_ROOT/%{_datadir}/pagure
  230. # Install the systemd file for the web frontend
  231. mkdir -p $RPM_BUILD_ROOT/%{_unitdir}
  232. install -p -m 644 files/pagure_web.service \
  233. $RPM_BUILD_ROOT/%{_unitdir}/pagure_web.service
  234. # Install the systemd file for the docs web frontend
  235. mkdir -p $RPM_BUILD_ROOT/%{_unitdir}
  236. install -p -m 644 files/pagure_docs_web.service \
  237. $RPM_BUILD_ROOT/%{_unitdir}/pagure_docs_web.service
  238. # Install the systemd file for the worker
  239. mkdir -p $RPM_BUILD_ROOT/%{_unitdir}
  240. install -p -m 644 files/pagure_worker.service \
  241. $RPM_BUILD_ROOT/%{_unitdir}/pagure_worker.service
  242. # Install the systemd file for the gitolite worker
  243. install -p -m 644 files/pagure_gitolite_worker.service \
  244. $RPM_BUILD_ROOT/%{_unitdir}/pagure_gitolite_worker.service
  245. # Install the systemd file for the web-hook
  246. install -p -m 644 files/pagure_webhook.service \
  247. $RPM_BUILD_ROOT/%{_unitdir}/pagure_webhook.service
  248. # Install the systemd file for the ci service
  249. install -p -m 644 files/pagure_ci.service \
  250. $RPM_BUILD_ROOT/%{_unitdir}/pagure_ci.service
  251. # Install the systemd file for the logcom service
  252. install -p -m 644 files/pagure_logcom.service \
  253. $RPM_BUILD_ROOT/%{_unitdir}/pagure_logcom.service
  254. # Install the systemd file for the loadjson service
  255. install -p -m 644 files/pagure_loadjson.service \
  256. $RPM_BUILD_ROOT/%{_unitdir}/pagure_loadjson.service
  257. # Install the systemd file for the mirror service
  258. install -p -m 644 files/pagure_mirror.service \
  259. $RPM_BUILD_ROOT/%{_unitdir}/pagure_mirror.service
  260. # Install the systemd file for the script sending reminder about API key
  261. # expiration
  262. install -p -m 644 files/pagure_api_key_expire_mail.service \
  263. $RPM_BUILD_ROOT/%{_unitdir}/pagure_api_key_expire_mail.service
  264. install -p -m 644 files/pagure_api_key_expire_mail.timer \
  265. $RPM_BUILD_ROOT/%{_unitdir}/pagure_api_key_expire_mail.timer
  266. # Install the systemd file for the script updating mirrored project
  267. install -p -m 644 files/pagure_mirror_project_in.service \
  268. $RPM_BUILD_ROOT/%{_unitdir}/pagure_mirror_project_in.service
  269. install -p -m 644 files/pagure_mirror_project_in.timer \
  270. $RPM_BUILD_ROOT/%{_unitdir}/pagure_mirror_project_in.timer
  271. # Install the milter files
  272. mkdir -p $RPM_BUILD_ROOT/%{_localstatedir}/run/pagure
  273. mkdir -p $RPM_BUILD_ROOT/%{_tmpfilesdir}
  274. install -p -m 0644 pagure-milters/milter_tempfile.conf \
  275. $RPM_BUILD_ROOT/%{_tmpfilesdir}/%{name}-milter.conf
  276. install -p -m 644 pagure-milters/pagure_milter.service \
  277. $RPM_BUILD_ROOT/%{_unitdir}/pagure_milter.service
  278. install -p -m 644 pagure-milters/comment_email_milter.py \
  279. $RPM_BUILD_ROOT/%{_datadir}/pagure/comment_email_milter.py
  280. # Install the eventsource
  281. mkdir -p $RPM_BUILD_ROOT/%{_libexecdir}/pagure-ev
  282. install -p -m 755 pagure-ev/pagure_stream_server.py \
  283. $RPM_BUILD_ROOT/%{_libexecdir}/pagure-ev/pagure_stream_server.py
  284. install -p -m 644 pagure-ev/pagure_ev.service \
  285. $RPM_BUILD_ROOT/%{_unitdir}/pagure_ev.service
  286. # Fix the shebang for various scripts
  287. sed -e "s|#!/usr/bin/env python|#!%{__python}|" -i \
  288. $RPM_BUILD_ROOT/%{_libexecdir}/pagure-ev/*.py \
  289. $RPM_BUILD_ROOT/%{_libexecdir}/pagure/*.py \
  290. $RPM_BUILD_ROOT/%{_datadir}/pagure/*.py \
  291. $RPM_BUILD_ROOT/%{python_sitelib}/pagure/hooks/files/*.py \
  292. $RPM_BUILD_ROOT/%{python_sitelib}/pagure/hooks/files/hookrunner \
  293. $RPM_BUILD_ROOT/%{python_sitelib}/pagure/hooks/files/post-receive \
  294. $RPM_BUILD_ROOT/%{python_sitelib}/pagure/hooks/files/pre-receive \
  295. $RPM_BUILD_ROOT/%{python_sitelib}/pagure/hooks/files/repospannerhook
  296. # Switch interpreter for systemd units
  297. sed -e "s|/usr/bin/python|%{__python}|g" -i $RPM_BUILD_ROOT/%{_unitdir}/*.service
  298. %if ! (0%{?rhel} && 0%{?rhel} < 8)
  299. # Switch all systemd units to use the correct celery
  300. sed -e "s|/usr/bin/celery|/usr/bin/celery-3|g" -i $RPM_BUILD_ROOT/%{_unitdir}/*.service
  301. # Switch all systemd units to use the correct gunicorn
  302. sed -e "s|/usr/bin/gunicorn|/usr/bin/gunicorn-3|g" -i $RPM_BUILD_ROOT/%{_unitdir}/*.service
  303. %endif
  304. # Make log directories
  305. mkdir -p $RPM_BUILD_ROOT/%{_localstatedir}/log/pagure
  306. logfiles="web docs_web"
  307. for logfile in $logfiles; do
  308. touch $RPM_BUILD_ROOT/%{_localstatedir}/log/pagure/access_${logfile}.log
  309. touch $RPM_BUILD_ROOT/%{_localstatedir}/log/pagure/error_${logfile}.log
  310. done
  311. # Regenerate missing symlinks (really needed for upgrades from pagure < 5.0)
  312. runnerhooks="post-receive pre-receive"
  313. for runnerhook in $runnerhooks; do
  314. rm -rf $RPM_BUILD_ROOT/%{python_sitelib}/pagure/hooks/files/$runnerhook
  315. ln -sf hookrunner $RPM_BUILD_ROOT/%{python_sitelib}/pagure/hooks/files/$runnerhook
  316. done
  317. %if 0%{?fedora} || 0%{?rhel} >= 8
  318. # Byte compile everything not in sitelib
  319. %py_byte_compile %{__python} %{buildroot}%{_datadir}/pagure/
  320. %py_byte_compile %{__python} %{buildroot}%{_libexecdir}/pagure/
  321. %py_byte_compile %{__python} %{buildroot}%{_libexecdir}/pagure-ev/
  322. %endif
  323. %post
  324. %systemd_post pagure_worker.service
  325. %systemd_post pagure_gitolite_worker.service
  326. %systemd_post pagure_api_key_expire_mail.timer
  327. %systemd_post pagure_mirror_project_in.timer
  328. %post web-nginx
  329. %systemd_post pagure_web.service
  330. %systemd_post pagure_docs_web.service
  331. %post milters
  332. %systemd_post pagure_milter.service
  333. %post ev
  334. %systemd_post pagure_ev.service
  335. %post webhook
  336. %systemd_post pagure_webhook.service
  337. %post ci
  338. %systemd_post pagure_ci.service
  339. %post logcom
  340. %systemd_post pagure_logcom.service
  341. %post loadjson
  342. %systemd_post pagure_loadjson.service
  343. %post mirror
  344. %systemd_post pagure_mirror.service
  345. %preun
  346. %systemd_preun pagure_worker.service
  347. %systemd_preun pagure_gitolite_worker.service
  348. %systemd_preun pagure_api_key_expire_mail.timer
  349. %systemd_preun pagure_mirror_project_in.timer
  350. %preun web-nginx
  351. %systemd_preun pagure_web.service
  352. %systemd_preun pagure_docs_web.service
  353. %preun milters
  354. %systemd_preun pagure_milter.service
  355. %preun ev
  356. %systemd_preun pagure_ev.service
  357. %preun webhook
  358. %systemd_preun pagure_webhook.service
  359. %preun ci
  360. %systemd_preun pagure_ci.service
  361. %preun logcom
  362. %systemd_preun pagure_logcom.service
  363. %preun loadjson
  364. %systemd_preun pagure_loadjson.service
  365. %preun mirror
  366. %systemd_preun pagure_mirror.service
  367. %postun
  368. %systemd_postun_with_restart pagure_worker.service
  369. %systemd_postun_with_restart pagure_gitolite_worker.service
  370. %systemd_postun pagure_api_key_expire_mail.timer
  371. %systemd_postun pagure_mirror_project_in.timer
  372. %postun web-nginx
  373. %systemd_postun_with_restart pagure_web.service
  374. %systemd_postun_with_restart pagure_docs_web.service
  375. %postun milters
  376. %systemd_postun_with_restart pagure_milter.service
  377. %postun ev
  378. %systemd_postun_with_restart pagure_ev.service
  379. %postun webhook
  380. %systemd_postun_with_restart pagure_webhook.service
  381. %postun ci
  382. %systemd_postun_with_restart pagure_ci.service
  383. %postun logcom
  384. %systemd_postun_with_restart pagure_logcom.service
  385. %postun loadjson
  386. %systemd_postun_with_restart pagure_loadjson.service
  387. %postun mirror
  388. %systemd_postun_with_restart pagure_mirror.service
  389. %files
  390. %doc README.rst UPGRADING.rst doc/
  391. %license LICENSE
  392. %config(noreplace) %{_sysconfdir}/pagure/pagure.cfg
  393. %config(noreplace) %{_sysconfdir}/pagure/alembic.ini
  394. %dir %{_sysconfdir}/pagure/
  395. %dir %{_datadir}/pagure/
  396. %{_datadir}/pagure/*.py*
  397. %if ! (0%{?rhel} && 0%{?rhel} < 8)
  398. %{_datadir}/pagure/__pycache__/
  399. %endif
  400. %{_datadir}/pagure/alembic/
  401. %{_libexecdir}/pagure/
  402. %{python_sitelib}/pagure/
  403. %exclude %{python_sitelib}/pagure/themes/pagureio
  404. %exclude %{python_sitelib}/pagure/themes/srcfpo
  405. %exclude %{python_sitelib}/pagure/themes/chameleon
  406. %{python_sitelib}/pagure*.egg-info
  407. %{_bindir}/pagure-admin
  408. %{_unitdir}/pagure_worker.service
  409. %{_unitdir}/pagure_gitolite_worker.service
  410. %{_unitdir}/pagure_api_key_expire_mail.service
  411. %{_unitdir}/pagure_api_key_expire_mail.timer
  412. %{_unitdir}/pagure_mirror_project_in.service
  413. %{_unitdir}/pagure_mirror_project_in.timer
  414. %dir %{_localstatedir}/log/pagure
  415. %files web-apache-httpd
  416. %license LICENSE
  417. %config(noreplace) %{_sysconfdir}/httpd/conf.d/pagure.conf
  418. %config(noreplace) %{_datadir}/pagure/*.wsgi
  419. %files web-nginx
  420. %license LICENSE
  421. %config(noreplace) %{_sysconfdir}/nginx/conf.d/pagure.conf
  422. %{_unitdir}/pagure_web.service
  423. %{_unitdir}/pagure_docs_web.service
  424. %ghost %{_localstatedir}/log/pagure/access_*.log
  425. %ghost %{_localstatedir}/log/pagure/error_*.log
  426. %files theme-pagureio
  427. %license LICENSE
  428. %{python_sitelib}/pagure/themes/pagureio/
  429. %files theme-srcfpo
  430. %license LICENSE
  431. %{python_sitelib}/pagure/themes/srcfpo/
  432. %files theme-chameleon
  433. %license LICENSE
  434. %{python_sitelib}/pagure/themes/chameleon/
  435. %files milters
  436. %license LICENSE
  437. %attr(755,postfix,postfix) %dir %{_localstatedir}/run/pagure
  438. %dir %{_datadir}/pagure/
  439. %{_tmpfilesdir}/%{name}-milter.conf
  440. %{_unitdir}/pagure_milter.service
  441. %{_datadir}/pagure/comment_email_milter.py*
  442. %files ev
  443. %license LICENSE
  444. %{_libexecdir}/pagure-ev/
  445. %{_unitdir}/pagure_ev.service
  446. %files webhook
  447. %license LICENSE
  448. %{_unitdir}/pagure_webhook.service
  449. %files ci
  450. %license LICENSE
  451. %{_unitdir}/pagure_ci.service
  452. %files logcom
  453. %license LICENSE
  454. %{_unitdir}/pagure_logcom.service
  455. %files loadjson
  456. %license LICENSE
  457. %{_unitdir}/pagure_loadjson.service
  458. %files mirror
  459. %license LICENSE
  460. %{_unitdir}/pagure_mirror.service
  461. %changelog
  462. * Tue Aug 11 2020 Pierre-Yves Chibon <pingou@pingoured.fr> - 5.11.3-1
  463. - Update to 5.11.3
  464. * Tue Aug 04 2020 Pierre-Yves Chibon <pingou@pingoured.fr> - 5.11.2-1
  465. - Update to 5.11.2
  466. * Mon Aug 03 2020 Pierre-Yves Chibon <pingou@pingoured.fr> - 5.11.1-1
  467. - Update to 5.11.1
  468. * Mon Aug 03 2020 Pierre-Yves Chibon <pingou@pingoured.fr> - 5.11.0-1
  469. - Update to 5.11.0
  470. * Thu May 14 2020 Pierre-Yves Chibon <pingou@pingoured.fr> - 5.10.0-1
  471. - Update to 5.10.0
  472. * Mon Mar 30 2020 Pierre-Yves Chibon <pingou@pingoured.fr> - 5.9.1-1
  473. - Update to 5.9.1
  474. * Tue Mar 24 2020 Pierre-Yves Chibon <pingou@pingoured.fr> - 5.9.0-1
  475. - Update to 5.9.0
  476. * Mon Dec 02 2019 Pierre-Yves Chibon <pingou@pingoured.fr> - 5.8.1-1
  477. - Update to 5.8.1
  478. * Fri Nov 15 2019 Pierre-Yves Chibon <pingou@pingoured.fr> - 5.8-1
  479. - Update to 5.8
  480. * Sat Aug 10 2019 Pierre-Yves Chibon <pingou@pingoured.fr> - 5.7.4-1
  481. - Update to 5.7.4
  482. * Fri Aug 02 2019 Pierre-Yves Chibon <pingou@pingoured.fr> - 5.7.3-1
  483. - Update to pagure 5.7.3
  484. * Tue Jul 30 2019 Pierre-Yves Chibon <pingou@pingoured.fr> - 5.7.2-1
  485. - Update to pagure 5.7.2
  486. * Fri Jul 12 2019 Pierre-Yves Chibon <pingou@pingoured.fr> - 5.7.1-1
  487. - Update to pagure 5.7.1
  488. * Fri Jul 05 2019 Pierre-Yves Chibon <pingou@pingoured.fr> - 5.7-1
  489. - Update to pagure 5.7
  490. * Tue Jun 04 2019 Pierre-Yves Chibon <pingou@pingoured.fr> - 5.6-1
  491. - Update to pagure 5.6
  492. * Mon Apr 08 2019 Pierre-Yves Chibon <pingou@pingoured.fr> - 5.5-1
  493. - Update to pagure 5.5
  494. * Thu Mar 28 2019 Pierre-Yves Chibon <pingou@pingoured.fr> - 5.4-1
  495. - Update to pagure 5.4
  496. * Fri Feb 22 2019 Pierre-Yves Chibon <pingou@pingoured.fr> - 5.3-1
  497. - Update to pagure 5.3
  498. * Mon Jan 07 2019 Pierre-Yves Chibon <pingou@pingoured.fr> - 5.2-1
  499. - Update to pagure 5.2
  500. * Thu Oct 11 2018 Pierre-Yves Chibon <pingou@pingoured.fr> - 5.1.3-1
  501. - Update to pagure 5.1.3
  502. * Thu Oct 11 2018 Pierre-Yves Chibon <pingou@pingoured.fr> - 5.1.2-1
  503. - Update to pagure 5.1.2
  504. * Tue Oct 09 2018 Pierre-Yves Chibon <pingou@pingoured.fr> - 5.1.1-1
  505. - Update to pagure 5.1.1
  506. * Tue Oct 09 2018 Pierre-Yves Chibon <pingou@pingoured.fr> - 5.1-1
  507. - Update to pagure 5.1
  508. * Thu Sep 27 2018 Pierre-Yves Chibon <pingou@pingoured.fr> - 5.0.1-1
  509. - Update to pagure 5.0.1
  510. * Mon Sep 24 2018 Pierre-Yves Chibon <pingou@pingoured.fr> - 5.0-1
  511. - Update to pagure 5.0
  512. * Mon Sep 17 2018 Pierre-Yves Chibon <pingou@pingoured.fr> - 4.93.0-1
  513. - Update to 4.93.0, fourth beta release of pagure 5.0
  514. * Wed Aug 29 2018 Pierre-Yves Chibon <pingou@pingoured.fr> - 4.92.0-1
  515. - Update to 4.92.0, third beta release of pagure 5.0
  516. * Thu Aug 23 2018 Pierre-Yves Chibon <pingou@pingoured.fr> - 4.91.0-1
  517. - Update to 4.91.0, second beta release of pagure 5.0
  518. * Mon Aug 20 2018 Pierre-Yves Chibon <pingou@pingoured.fr> - 4.90.0-1
  519. - Update to 4.90.0, first beta release of pagure 5.0
  520. * Thu Jul 19 2018 Pierre-Yves Chibon <pingou@pingoured.fr> - 4.0.4-1
  521. - Update to 4.0.4
  522. * Mon May 14 2018 Pierre-Yves Chibon <pingou@pingoured.fr> - 4.0.3-1
  523. - Update to 4.0.3
  524. * Mon May 14 2018 Pierre-Yves Chibon <pingou@pingoured.fr> - 4.0.2-1
  525. - Update to 4.0.2
  526. * Thu Apr 26 2018 Pierre-Yves Chibon <pingou@pingoured.fr> - 4.0.1-1
  527. - Update to 4.0.1
  528. * Thu Apr 26 2018 Pierre-Yves Chibon <pingou@pingoured.fr> - 4.0-1
  529. - Update to 4.0
  530. - Changelog is from now on included in the doc/ folder
  531. * Thu Dec 21 2017 Pierre-Yves Chibon <pingou@pingoured.fr> - 3.13.2-1
  532. - Update to 3.13.2
  533. - Fix ordering issues by author using an alias so the User doesn't collide
  534. * Tue Dec 19 2017 Pierre-Yves Chibon <pingou@pingoured.fr> - 3.13.1-1
  535. - Update to 3.13.1
  536. - Add an alembic migration removing a constraint on the DB that not only no
  537. longer needed but even blocking regular use now
  538. * Mon Dec 18 2017 Pierre-Yves Chibon <pingou@pingoured.fr> - 3.13-1
  539. - Update to 3.13
  540. - Fix the alembic migration adjusting the pull_requests table
  541. - Fix how is created the db in the docker development environment (Clement
  542. Verna)
  543. - Ensure optional dependencies remain optional
  544. - Ensure groups cannot be created when it is not allowed
  545. - When listing issues, include the project as well in the user's issue API
  546. endpoint
  547. - Sort forks by date of creation (descending) (Neha Kandpal)
  548. - Ensure the pagination arguments are returned when a page is specified
  549. - Make the milestone clickable on the issue page
  550. - Make the celery tasks update their status so we know when they are running (vs
  551. pending)
  552. * Fri Dec 08 2017 Pierre-Yves Chibon <pingou@pingoured.fr> - 3.12-1
  553. - Update to 3.12
  554. - Adjust the API endpoint listing project to not return a 404 when not projects
  555. are found (Vivek Anand)
  556. - Remove --autoreload from the docker dev deployment (Vivek Anand)
  557. - Fix ordering issues (Patrick Uiterwijk)
  558. - Do not log actions pertaining to private issues, PRs or projects
  559. - Fix flagging a PR when no uid is specified
  560. - Fix the doc about custom gitolite config
  561. - Fix displaying the filename on the side and linking to file for remote PRs
  562. - Add irc info in Readme (Vivek Anand)
  563. - Make pagure compatible with newer python chardet
  564. - Check that the identifier isn't the hash of a git tree in view_file
  565. - Fix if the identifier provided is one of a blob instead of a commit in
  566. view_commit
  567. - Include the status when flagging a PR via jenkins
  568. - Enable OpenID Connect authentication (Slavek Kabrda)
  569. - Use the updated timestamp in the pull-request list
  570. - Add migration to fix the project_from_id foreign key in pull_requests
  571. - Let the SSE server to send the notifications so they can be displayed live
  572. - Improve the createdb script to support stamping the database in the initial
  573. run
  574. - Specify a different connection and read timeout in pagure-ci
  575. - Small CSS fix making the (un)subscribe show up on the PR page
  576. * Wed Nov 29 2017 Pierre-Yves Chibon <pingou@pingoured.fr> - 3.11.2-1
  577. - Update to 3.11.2
  578. - Fix giving a project if no user is specified
  579. - Don't show issue stats when issues are off
  580. * Tue Nov 28 2017 Pierre-Yves Chibon <pingou@pingoured.fr> - 3.11.1-1
  581. - Update to 3.11.1
  582. - Fix showing the issue list
  583. - Make clear in the project's settings that tags are also for PRs (Clement
  584. Verna)
  585. - Remove unused jdenticon js library (Shengjing Zhu)
  586. * Mon Nov 27 2017 Pierre-Yves Chibon <pingou@pingoured.fr> - 3.11-1
  587. - Update to 3.11
  588. - Print out the URL to existing PR(s) or to create one on push
  589. - Reword the repository access warning (Matt Prahl)
  590. - Add pagure-admin admin-token update to update the expiration date
  591. - Fix the api_view_user_activity_stats to return the expected data (post flask
  592. 0.11)
  593. - Add small icon showing if issues are blocked or blocking in the issue list
  594. - Replace all print statements with print function calls (Vadim Rutkovski)
  595. - Add a default_priority field to projects
  596. - Bail on merge a PR that is already closed
  597. - Add a graph of the history of the open issues on the project
  598. - Make the pagure hook act as the person doing the push
  599. - Clean spec file to drop deprecated lines and macros (Igor Gnatenko)
  600. - Include selectize in the settings page to fix the autocomplete in the give
  601. project action
  602. - Do not display the close_status if there isn't one
  603. - Do not show the `Fork and edit` button all the time
  604. - Allow project maintainer to set metadata when creating a new issue (expand the
  605. API as well)
  606. - Add a timeout when trying to query jenkins
  607. - Show the reply button even if the PR/issue is closed.
  608. - Add a diff view for PR
  609. - Improve the `My star` page
  610. - Introduce repo statistics
  611. - When a project enforce signed-off-by, clearly say so on the new PR page and
  612. properly block the PR from being created
  613. - Adjust button title on the 'Fork and Edit' action
  614. - Fix typos in the code (chocos10)
  615. - When editing an issue, act as the person who pushed the change
  616. - Commit using the user's fullname if there is one, otherwise its username
  617. - Expand the group info API endpoint
  618. - Sorting on Opened, Modified, Closed, Priority, Reporter, Assignee cols (Mohan
  619. Boddu and Matt Prahl)
  620. - Fix the Vagrant setup (Ryan Lerch)
  621. - Fix typo in the example pagure.wsgi file (Vivek Anand)
  622. - Add API endpoints for listing pull requests for a user (Ryan Lerch)
  623. - Ask for the post-commit hook to be run when editing files via the UI
  624. - Fix the milter for email gpg signed
  625. - Allow filtering the user's project by access level
  626. - Add a modal at the bottom of the issues list to add milestones
  627. - Add a field to store the order of the milestones
  628. - Hide the ``+`` button on the index page when it is disabled in the UI
  629. - Improve mimetype detection (Shengjing Zhu and Clement Verna)
  630. - Allow assignee to drop their assignment
  631. - Remove duplicate [Pagure] from mail subjects (Stefan Bühler)
  632. - Fix undefined 'path' in blame.html template (Stefan Bühler)
  633. - Warn users when a project does not support direct push
  634. - Update gitolite's config for the project when set to PR only
  635. - Do not report the branch differing master if PRs have been turned off
  636. - Add a button and an API endpoint to subscribe to PR's notifications
  637. - Fix showing the file names in PR (pre)view
  638. - Fix number of typos in the documentation (René Genz)
  639. - Improve the documentation about documentation hosting in pagure (René Genz)
  640. - Allow priorities and milestones to be 0 or -1
  641. - Return the flag UID when adding or updating a flag on a PR not in fedmsg
  642. - Add flags on commits
  643. - Add documentation about flags on commits and PRs
  644. - Add status fields to flags
  645. - Make flag's UID be unique to the commit/PR being flagged
  646. - Add API endpoint to retrieve all issues related to an user across all repos
  647. - Fix the new PR and delete buttons for branch name with + in them
  648. - When merging a PR, call the post-update hook on the target repo
  649. - Add tags to pull-request
  650. - Fix documentation for fork API endpoint (ishcherb)
  651. - Send fedmsg messages when deleting a project (Shaily)
  652. * Fri Oct 13 2017 Pierre-Yves Chibon <pingou@pingoured.fr> - 3.10.1-1
  653. - Update to 3.10.1
  654. - Fix providing access to some of the internal API endpoints by javascript
  655. * Fri Oct 13 2017 Pierre-Yves Chibon <pingou@pingoured.fr> - 3.10-1
  656. - Update to 3.10
  657. - Show the branches' head in the commit list
  658. - Log which IP is being denied access to the internal endpoints (makes debugging
  659. easier)
  660. - Link to pagure's own markdown documentation and warn that remote images are
  661. not supported
  662. - Document how to run a single test file or a single test in a file
  663. - Fix trying to decode when the encoding is None
  664. - Include an url_path field in the JSON representation of a project
  665. - Generalize the description of the ACLs (since we know have project-less API
  666. tokens)
  667. - Drop ``--autoreload`` from the .service files as celery dropped support for it
  668. and it never really worked (Vivek Anand)
  669. * Wed Oct 11 2017 Pierre-Yves Chibon <pingou@pingoured.fr> - 3.9-1
  670. - Update to 3.9
  671. - Fix the editing issue when the user does not actually edit anything
  672. - Fix the internal API endpoint: get branches of commit to support namespace
  673. - Consolidate the code in our custom markdown processor (fixes linking to a
  674. commit on a namespaced project)
  675. - Fix deleting a project by also removing it from the gitolite config
  676. - Warn if the user is about to just recompile the gitolite config via
  677. pagure-admin (Patrick Uiterwijk)
  678. - Update .git/config example in doc/usage/pull_requests.rst (sclark)
  679. - Include the PRs opened by the user on the 'My pull-requests' page
  680. - Add to pagure-admin the actions: get-watch and update-watch
  681. - Add to pagure-admin the action: read-only
  682. - Add the user's fullname (if there is one) as title when they comment
  683. - Fix the title of the percentage when hovering over the red bar in issues
  684. - Make the box to edit comments bigger
  685. - Document in the usage section where to find the API documentation
  686. - Provide the sha256 and sha512 of the releases in a CHECKSUMS file
  687. - Remove clear buttons (Till Maas)
  688. * Fri Sep 29 2017 Pierre-Yves Chibon <pingou@pingoured.fr> - 3.8-1
  689. - Update to 3.8
  690. - Fix API documentation for git/branch (Matt Prahl)
  691. - Fix giving a project to someone who already has access (Matth Prahl)
  692. - Add some border to the tables created in README files
  693. - Ask the user to confirm merging a pull-request
  694. - Fix processing status and close_status updates in the SSE
  695. - Fix the URL to the issue used by the SSE JS on tags
  696. - Increase the logging in the milter to help figuring out issues in the future
  697. - Fix the In-Reply-To header when sending notifications
  698. - Fix showing the delete project button
  699. - Fix search issues with a unicode character
  700. - Catch exception raised when accessing the head of the repo
  701. - Fix deleting a project when some of the folder are not used
  702. - Allow viewing a PR when its origin (fork or branch) is gone
  703. - Fix linking to issue or PR in namespaced projects via #<id>
  704. - Make it more obvious that the namespace and the project are different links
  705. - Tell fedmsg to send things with pagure certificates (Patrick Uiterwijk)
  706. - Fix loading ticket templates on namespaced project and extracting their names
  707. - Add a banner on the overview page when the ACLs are being refreshed on the
  708. backend (and thus ssh access may not be entirely functional) (Vivek Anand)
  709. - Update the documentation on how to create pull requests (Clement Verna)
  710. - Add button to refresh external pull requests (Patrick Uiterwijk)
  711. - Add the possibility to get the group members when asking the project info
  712. - Make the PROJECT_NAME_REGEX used in form be configurable
  713. - Adjust the milter to support replying with any email addresses associated
  714. - Allow pagure admin to give a project
  715. * Tue Sep 05 2017 Pierre-Yves Chibon <pingou@pingoured.fr> - 3.7.1-1
  716. - Update to 3.7.1
  717. - Fix the UPGRADING documentation
  718. - Add the API endpoint to edit multiple custom fields to the doc (Clement
  719. Verna)
  720. * Tue Sep 05 2017 Pierre-Yves Chibon <pingou@pingoured.fr> - 3.7-1
  721. - Update to 3.7
  722. - Update link to markdown documentation, fix typo on the way (Till Hofmann)
  723. - Add feature allowing to prevent project creation in the UI only
  724. - Remove the front whitespace from the commit markdown regex (Clement Verna)
  725. - New API endpoint to modify multiple custom fields (Clement Verna)
  726. - Update the example output of the API endpoint giving project information
  727. - Add the ability to order issues by ascending or descending (Matt Prahl)
  728. - Consolidate around pagure.lib.git.generate_gitolite_acls
  729. - Regenerate the gitolite ACL when changing the main admin of a project
  730. - Change the documentation link end point (Clement Verna)
  731. - Fixes the README.rst file (Ompragash)
  732. - Update Docker Environment (Clement Verna)
  733. - Add a configuration key to allow deleting forks but not projects
  734. - Show the entire project name in the UI on the delete button
  735. - Add support for a custom user in the SSH URL
  736. - Do not show the SSH url when the user isn't logged in
  737. - Update the documentation on how to work with pull requests (Clement Verna)
  738. - Support both JSON and Form POST on APIs that accepted only JSON (Matt Prahl)
  739. - Don't expand groups in the watchers API (Ralph Bean)
  740. - Add a new branch API (Matt Prahl)
  741. - Add bash function example to PR documentation (Clement Verna)
  742. - Add the star project feature (Vivek Anand)
  743. - Update the overview diagram
  744. - Fix the rendering of the API version in the html page (Clement Verna)
  745. - Fix message-id not having FQDN (Sachin Kamath)
  746. - Mention on what the rebase was done
  747. - Remove the line numbers coming from pygments on pull-requests
  748. - Include the targeted branch in the list of PRs
  749. - Separately link user/namespace/name
  750. - Fix the pagination when listing projects via the view_projects endpoints
  751. - Retain access when transfering ownership of the project (Matt Prahl)
  752. * Mon Aug 14 2017 Pierre-Yves Chibon <pingou@pingoured.fr> - 3.6-1
  753. - Update to 3.6
  754. - Blacklist creating a group named 'group'
  755. - Allow having a dedicated worker to compile the gitolite configuration file
  756. - Fix removing groups of a project
  757. - Make the API returns only open issues by default (as documented) (Clement
  758. Verna)
  759. - Improve the README regarding the use of eventlet to run the tests (Vivek
  760. Anand)
  761. - Give Pagure site admins the ability to modify projects using the API (Matt
  762. Prahl)
  763. - Add the "git/generateacls" API endpoint for projects (Matt Prahl)
  764. * Tue Aug 08 2017 Pierre-Yves Chibon <pingou@pingoured.fr> - 3.5-1
  765. - Update to 3.5
  766. - Fix login when groups are managed outside
  767. - Fix the ordering of the issues by priority using JS and its documentation
  768. - Indicate the issue/PR status in the title of its link
  769. - Correct typo in waiting page template: 'You task' -> 'Your task' (Hazel Smith)
  770. - Fix redirect in search (Carl George)
  771. - Fix removing users of a project
  772. - Allow customizing the HTML title globally
  773. - Drop the new line character and the '# end of body' message when loading the
  774. config
  775. - Scroll to the comment section on clicking reply. (shivani)
  776. - only show issues on the My Issue page if the issue tracker is on for the
  777. project (Vivek Anand)
  778. - Update the refresh-gitolite action of pagure-admin for the new interface
  779. (turns out this wasn't in fact merged in 3.4)
  780. - Add a configuration key to make pagure case sensitive
  781. - Add an USER_ACLS configuration key
  782. - Document the different API token ACLs configuration keys
  783. - Fix syncing groups from external account sources (Patrick Uiterwijk)
  784. * Mon Jul 31 2017 Pierre-Yves Chibon <pingou@pingoured.fr> - 3.4-1
  785. - Update to 3.4
  786. - Fix layout breakage in the doc
  787. - Stop using readlines() to drop the trailing new line character
  788. - Fix logging by properly formatting the message
  789. - Fix the issue count in the My Issues page (Vivek Anand)
  790. - Add a configuration key to disable deleting branches from the UI
  791. - Add a configuration key to disable managing user's ssh key in pagure
  792. - Fix the vagrant environment (Clement Verna)
  793. - Fix branch support for the git blame view
  794. - Update the PR ref when the PR is updated
  795. - Add a configuration key to disable the deploy keys in a pagure instance
  796. - Fix login when groups are managed outside of pagure
  797. - Fix setting up the git hooks when there is no DOCS_FOLDER set
  798. - Fix installing up the pagure hooks when there is no DOCS_FOLDER set
  799. * Mon Jul 24 2017 Pierre-Yves Chibon <pingou@pingoured.fr> - 3.3.1-1
  800. - Update to 3.3.1
  801. - Fix typo in the alembic migration present in 3.3
  802. * Mon Jul 24 2017 Pierre-Yves Chibon <pingou@pingoured.fr> - 3.3-1
  803. - [SECURITY FIX] block private repo (read) access via ssh due to a bug on how we
  804. generated the gitolite config - CVE-2017-1002151 (Stefan Bühler)
  805. - Add the date_modified to projects (Clement Verna)
  806. * Fri Jul 14 2017 Pierre-Yves Chibon <pingou@pingoured.fr> - 3.2.1-1
  807. - Fix a syntax error on the JS in the wait page
  808. * Fri Jul 14 2017 Pierre-Yves Chibon <pingou@pingoured.fr> - 3.2-1
  809. - Update to 3.2
  810. - Use a decorator to check if a project has an issue tracker (Clement Verna)
  811. - Optimize generating the gitolite configuration for group change
  812. - Fix the issue_keys table for mysql
  813. - Drop the load_from_disk script
  814. - Fix next_url URL parameter on the login page not being used (Carlos Mogas da
  815. Silva)
  816. - Support configuration where there are no docs folder and no tickets folder
  817. - Show all the projects a group has access to
  818. - Add pagination to the projects API (Matt Prahl)
  819. - Simplify diff calculation (Carlos Mogas da Silva)
  820. - Show the inline comment in the PR's comments by default (Clement Verna)
  821. - Fix the URL in the API documentation for creating a new project (Matt Prahl)
  822. * Tue Jul 04 2017 Pierre-Yves Chibon <pingou@pingoured.fr> - 3.1-1
  823. - Update to 3.1
  824. - Allow project-less API token to create new tickets
  825. - Tips/tricks: add info on how to validate local user account without email
  826. verification (Vivek Anand)
  827. - Optimize the generation of the gitolite configuration
  828. - Improve logging and load only the plugin of interest instead of all of them
  829. - Show the task's status on the wait page and avoid reloading the page
  830. - Don't show '+' sign when GROUP_MNGT is off (Vivek Anand)
  831. * Fri Jun 30 2017 Pierre-Yves Chibon <pingou@pingoured.fr> - 3.0-1
  832. - Update to 3.0
  833. - Since 2.90 celery has become a requirement as well as one of the queueing
  834. system it supports (pagure defaults to using redis)
  835. - Multiple stability and performance improvements (mainly thanks to Patrick
  836. Uiterwijk)
  837. - Fix the assignee value in fedmsg when assigning a ticket (Ricky Elrod)
  838. - Make pagure support bleach 2.0.0 (Shengjing Zhu)
  839. - Fixes in CI support (Tim Flink)
  840. - Update the documentation
  841. - Fix plain readme html escape (Shengjing Zhu)
  842. - Refactor user existence code in API and UI (Abhijeet Kasurde)
  843. - Add an API to modify a Pagure project's owner (Matt Prahl)
  844. - Support for uploading multiple files to an issue at once
  845. - Introduce the external committer feature
  846. - Add the required groups feature
  847. - Add an API endpoint to get the git urls of a project (Matt Prahl)
  848. - Blacklist 'wait' as project name
  849. - Add a border to the search box on the side bar to the documentation
  850. - Add the list-id, list-archive and X-Auto-Response-Suppress email headers
  851. - Add ways to customize the gitolite configuration file with snippets
  852. - Return a 404 on private ticket if the user is not authenticated
  853. - cleanup: move static js/css to vendor dir
  854. - Limit the requests version as it conflicts with our chardet requirement
  855. - Rename all the services to pagure-*
  856. - Remove 'on <project name' - watch status dropdown (Vivek Anand)
  857. - Create references for pull-request in the git repo for local checkout
  858. - Use the entire list of users for the assignee field completion
  859. - Fix searching for groups
  860. - Make the search work when searching for project with namespaces or forks
  861. - Return a human-friendly error message when upload fails
  862. - Let acting on the status potentially set the close_status and vice versa
  863. - Multiple fixes to the SSE server
  864. - When forking a project, wait until the very end to let the user go through
  865. - Allow customizing the writing of gitolite's configuration file
  866. - Fix diffing the branch of a project against the target branch
  867. - Fix displaying the new PR button on the default branch
  868. - Do not send a notification upon merge conflicts
  869. - Do not let pagure return 500 when hit with bogus URL
  870. - When loading comment from JSON rely on username/comment rather than comment id
  871. - When deleting a comment, refresh the ticket git repo
  872. - Make patch_to_diff use lists instead of string concatenation (Patrick
  873. Uiterwijk)
  874. * Wed May 24 2017 Pierre-Yves Chibon <pingou@pingoured.fr> - 2.90.1-1
  875. - Update to 2.90.1
  876. - Fix the systemd service file for the worker, needs to have the full path
  877. (Patrick Uiterwijk and I)
  878. - Fix the logcom server (Patrick Uiterwijk)
  879. - Use python-redis instead of trollius-redis to correctly clean up when client
  880. leaves on the EV server (Patrick Uiterwijk)
  881. * Tue May 23 2017 Pierre-Yves Chibon <pingou@pingoured.fr> - 2.90.0-1
  882. - Bump to 2.90, pre-release of 3.0
  883. - Re-architecture the interactions with git (especially the writing part) to be
  884. handled by an async worker (Patrick Uiterwijk)
  885. - Add the ability to filter projects by owner (Matt Prahl)
  886. * Thu May 18 2017 Pierre-Yves Chibon <pingou@pingoured.fr> - 2.15.1-1
  887. - Update to 2.15.1
  888. - Fix the requirements on straight.plugin in the requirements.txt file
  889. (Shengjing Zhu)
  890. - Fix typo in the fedmsg hook so it finds the function where it actually is
  891. - Fix and increase the logging when merging a PR
  892. - Fix pushing a merge commit to the original repo
  893. - Use psutil's Process() instead of looping through all processes (Patrick
  894. Uiterwijk)
  895. - Don't email admins for each PR conflicting
  896. - Fix/improve our new locking mechanism (Patrick Uiterwijk)
  897. - Drop making the token required at the database level since pagure-ci doesn't
  898. use one (but do flag pull-requests)
  899. - Fix the watch feature (Matt Prahl)
  900. * Tue May 16 2017 Pierre-Yves Chibon <pingou@pingoured.fr> - 2.15-1
  901. - Update to 2.15
  902. - Improve logic in api/issue.py to reduce code duplication (Martin Basti)
  903. - Fix the download button for attachment (Mark Reynolds)
  904. - Fix our markdown processor for strikethrough
  905. - Add a spinner indicating when we are retrieving the list of branches differing
  906. - Make add_file_to_git use a lock as we do for our other git repositories
  907. - Add the opportunity to enforce a PR-based workflow
  908. - Store in the DB the API token used to flag a pull-request
  909. - Allow people with ticket access to take and drop issues
  910. - Display the users and groups tied to the repo in the API (Matt Prahl)
  911. - Document our markdown in rest so it shows up in our documentation
  912. - Fix comparing the minimal version of flask-wtf required
  913. - Allow the td and th tags to have an align attribute to allow align in html
  914. tables via markdown
  915. - Avoid binaryornot 0.4.3 and chardet 3.0.0 for the time being
  916. - Add group information API that shows group members (Matt Prahl)
  917. - Ensure people with ticket metadata can edit the custom fields
  918. - Add support to create private projects (Farhaan Bukhsh) - Off by default
  919. - Link to the doc when the documentation is activated but has no content
  920. - Enforce project wide flake8 compliance in the tests
  921. - Enforce a linear alembic history in the tests
  922. - Increase logging in pagure.lib.git
  923. - Use custom logger on all module so we can configure finely the logging
  924. - Multiple improvements to the documentation (René Genz)
  925. - Add the ability to query projects by a namespace in the API (Matt Prahl)
  926. - Add the /<repo>/git/branches API endpoint (Matt Prahl)
  927. - Lock the git repo when removing elements from it
  928. - Always remove the lockfile after using it, just check if it is still present
  929. - Implement the `Give Repo` feature
  930. - Allow project-less token to change the status of an issue in the API
  931. - Make the watch feature more granular (Matt Prahl): you can now watch tickets,
  932. commits, both, neither or go back to the default
  933. - Bring the pagure.lib coverage to 100% in the tests (which results to bug fixes
  934. in the code)
  935. - Add locking at the project level using SQL rather than filelock at the git
  936. repo level
  937. * Wed Mar 29 2017 Pierre-Yves Chibon <pingou@pingoured.fr> - 2.14.2-1
  938. - Update to 2.14.2
  939. - Fix a bug in the logic around diff branches in repos
  940. * Wed Mar 29 2017 Pierre-Yves Chibon <pingou@pingoured.fr> - 2.14.1-1
  941. - Update to 2.14.1
  942. - Fix typo for walking the repo when creating a diff of a PR
  943. - Have the web-hook use the signed content and have a content-type header
  944. - Fix running the tests on jenkins via a couple of fixes to pagure-admin and
  945. skipping a couple of tests on jenkins due to the current pygit2/libgit2
  946. situation in epel7
  947. * Mon Mar 27 2017 Pierre-Yves Chibon <pingou@pingoured.fr> - 2.14-1
  948. - Update to 2.14
  949. - Update the label of the button to comment on a PR (Abhijeet Kasurde)
  950. - Make search case insensitive (Vivek Anand)
  951. - Improve the debugging on pagure_loadjson
  952. - Only link the diff to the file if the PR is local and not remote
  953. - Do not log on fedmsg edition to private comment
  954. - When deleting a project, give the fullname in the confirmation window
  955. - Add link to the FPCA indicating where to sign it when complaining that the
  956. user did not sign it (Charelle Collett)
  957. - Fix the error: 'Project' object has no attribute 'ci_hook'
  958. - Fix input text height to match to button (Abhijeet Kasurde)
  959. - Fix the data model to make deleting a project straight forward
  960. - Fix searching issues in the right project by including the namespace
  961. - When creating the pull-request, save the commit_start and commit_stop
  962. - Ensure there is a date before trying to humanize it
  963. - Fixing showing tags even when some of them are not formatted as expected
  964. - Allow repo user to Take/Drop assigment of issue (Vivek Anand)
  965. - Add merge status column in pull requests page (Abhijeet Kasurde)
  966. - Allow user with ticket access to edit custom fields, metadata and the privacy
  967. flag (Vivek Anand)
  968. - Add number of issues in my issues page (Abhijeet Kasurde)
  969. - Allow report to filter for a key multiple times
  970. - Add the support to delete a report in a project
  971. - Fix rendering the roadmap when there are tickets closed without a close date
  972. - Fix to show tabs in pull request page on mobile (Abhijeet Kasurde)
  973. - Document some existing API endpoints that were missing from the doc
  974. - Make issues and pull-requests tables behave in responsive way (Abhijeet Kasurde)
  975. - Add option to custom field for email notification (Mark Reynolds)
  976. - When resetting the value of a custom field, indicate what the old value was
  977. - Add instance wide API token
  978. - Move the admin functions out of the UI and into a CLI tool pagure-admin
  979. - Do not update the hash in the URL for every tabs on the PR page
  980. - Fix heatmap to show current datetime not when when object was created (Smit
  981. Thakkar and Vivek Anand)
  982. - Do not include watchers in the subscribers of a private issue
  983. - Do not highlight code block unless a language is specified
  984. - Make getting a project be case insensitive
  985. - Do not change the privacy status of an issue unless one is specified
  986. - Fix the logic of the `since` keyword in the API (Vivek Anand)
  987. - Fix the logic around ticket dependencies
  988. - Add reset watch button making it go back to the default (Vivek Anand)
  989. - Do not show dates that are None object, instead make them empty strings
  990. - Allow filtering tickets by milestones in the API
  991. - Allow filtering tickets by priorities in the API
  992. - Expand the API to support filtering issues having or not having a milestone
  993. - Use plural form for SSH key textfield (Martin Basti)
  994. - Support irc:// links in our markdown and adjust the regex
  995. - Remove backticks from email subject (Martin Basti)
  996. - Adjust the logic when filtering issues by priorities in the API
  997. - Remove mentioning if a commit is in master on the front page
  998. - Optimize finding out which branches are in a PR or can be
  999. - Add required asterisk to Description on new issues (Abhijeet Kasurde)
  1000. - Fix misc typo in 404 messages (Abhijeet Kasurde)
  1001. - Add performance git repo analyzer/framework (Patrick Uiterwijk)
  1002. - Added tip_tricks in doc to document how to pre-fill issues using the url
  1003. (Eashan)
  1004. - Document how to filter out for issues having a certain tag in the tips and
  1005. tricks section
  1006. - Allow to manually triggering a run of pagure-ci via a list of sentences set in
  1007. the configuration
  1008. - Add support for admin API token to pagure-admin
  1009. - Make clicking on 'Unassigned' filter the unassigned PR as it does for issues
  1010. - Add Priority column to My Issues page (Abhijeet Kasurde)
  1011. - Optimize diffing pull-requests
  1012. - Add a description to the API tokens
  1013. - Include the fullname in the API output, in the project representation
  1014. - Add the possibility to edit issue milestone in the API (Martin Basti)
  1015. - Fix some wording (Till Maas)
  1016. - Rename "request pull" to pull request (Stanislav Laznicka)
  1017. - Make tags in issue list clickable (Martin Basti)
  1018. - Include the priority name in the notification rather than its level
  1019. - Update the ticket metadata before adding the new comment (if there is one)
  1020. * Fri Feb 24 2017 Pierre-Yves Chibon <pingou@pingoured.fr> - 2.13.2-1
  1021. - Update to 2.13.2
  1022. - Fix running the test suite due to bugs in the code:
  1023. - Fix picking which markdown extensions are available
  1024. - Fix rendering empty text files
  1025. * Fri Feb 24 2017 Pierre-Yves Chibon <pingou@pingoured.fr> - 2.13.1-1
  1026. - Update to 2.13.1
  1027. - Add a cancel button on the edit file page (shivani)
  1028. - Fix rendering empty file (Farhan Bukhsh)
  1029. - Fix retrieving the merge status of a pull-request when there is no master
  1030. - On the diff of a pull-request, add link to see that line in the entire file
  1031. (Pradeep CE)
  1032. - Make the pagure_hook_tickets git hook file be executable
  1033. - Be a little more selective about the markdown extensions always activated
  1034. - Do not notify the SSE server on comment added to a ticket via git
  1035. - Fix inline comment not showing on first click in PR page (Pradeep CE)
  1036. * Tue Feb 21 2017 Pierre-Yves Chibon <pingou@pingoured.fr> - 2.13-1
  1037. - Update to 2.13
  1038. - Allow filtering issues for certain custom keys using <key>:<value> in the
  1039. search input (Patric Uiterwijk)
  1040. - Make loading the JSON blob into the database its own async service
  1041. - Add ACLs to pagure (Vivek Anand)
  1042. - Fix running the tests against postgresql
  1043. - Let the doc server return the content as is when it fails to decode it
  1044. - Fix rendering a issue when one of the custom fields has not been properly
  1045. setup (ie a custom field of type list, with no options set-up but still having
  1046. a value for that ticket)
  1047. - Fix auto-completion when adding a tag to a ticket
  1048. - Add the possibility to filter the issues with no milestone assigned (Mark
  1049. Reynolds)
  1050. - Fix the callback URL for jenkins for pagure-ci
  1051. - Backport the equalto test to ensure it works on old jinja2 version (fixes
  1052. accessing the user's PR page)
  1053. * Mon Feb 13 2017 Pierre-Yves Chibon <pingou@pingoured.fr> - 2.12.1-1
  1054. - Update to 2.12.1
  1055. - Include the build id in the flag set by pagure-ci on PR (Farhaan Bukhsh)
  1056. - Fix using the deploy keys (Patrick Uiterwijk)
  1057. - Add the possibility to ignore existing git repo on disk when creating a new
  1058. project
  1059. - Fix checking for blacklisted projects if they have no namespace
  1060. - Link to the documentation in the footer (Rahul Bajaj)
  1061. - Fix retrieving the list of branches available for pull-request
  1062. - Order the project of a group alphabetically (case-insensitive)
  1063. - Fix listing the priorities always in their right order
  1064. * Fri Feb 10 2017 Pierre-Yves Chibon <pingou@pingoured.fr> - 2.12-1
  1065. - Update to 2.12
  1066. - Fix the place of the search and tags bars in the issues page (Pradeep CE)
  1067. - Support removing all content of a custom field (Patrick Uiterwijk)
  1068. - Improve the `My Pull Requests` page (Pradeep CE)
  1069. - Fix displaying binary files in the documentation
  1070. - Add a way to easily select multiple tags in the issues list and roadmap
  1071. - Allow selecting multiple milestones easily in the UI of the roadmap
  1072. - Fix displaying namespaced docs (Igor Gnatenko)
  1073. - Fix the web-hook server
  1074. - Add a way to view patch attached to a ticket as raw
  1075. - Allow milestone to be set when creating an issue using the API (Mark Reynolds)
  1076. - Fix adding and editing tags to/of a project
  1077. - Make the usage section of the doc be at the top of it (Jeremy Cline)
  1078. - Add notifications to issues for meta-data changes (Mark Reynolds)
  1079. - Fix not updating the private status of an issue when loading it from JSON
  1080. (Vivek Anand)
  1081. - Fix triggering web-hook notifications via the fedmsg hook
  1082. - Add a configuration key allowing to hide some projects that users have access
  1083. to only via these groups
  1084. - Fix figuring out which branches are not merged in namespaced project
  1085. - Automatically link the commits mentionned in a ticket if their hash is 7 chars
  1086. or more
  1087. - Allow dropping all the priorities info of an issue
  1088. - Do not edit multiple times the milestone info when updating a ticket
  1089. - Only update the custom field if there is a value to give it, otherwise remote
  1090. it
  1091. - Make pagure compatible with flask-wtf >= 0.14.0
  1092. - Add a button to test web-hook notifications
  1093. - Fix the layout on the page listing all the closed issues (Rahul Bajaj)
  1094. - Load priorities when refreshing the DB from the ticket git repos (Mark
  1095. Reynolds)
  1096. - Ignore `No Content-Type header in response` error raised by libgit2 on pull
  1097. from repo hosted on github (for remote PR)
  1098. - Add deployment keys (ssh key specific for a single project can be either read
  1099. and write or read-only) (Patrick Uiterwijk)
  1100. - Fix install the logcom service to log commits
  1101. - Fix deleting tickets that have a tag attached
  1102. - Allow pre-filling title and content of an issue via URL arguments:
  1103. ?title=<title>&content=<issue description>
  1104. - Re-initialize the backend git repos if there are no tickets/PRs in the DB
  1105. (Vivek Anand)
  1106. - Fix invalid pagination when listing all the tickets (regardless of their
  1107. status) and then applying some filtering (Vibhor Verma)
  1108. * Fri Jan 20 2017 Pierre-Yves Chibon <pingou@pingoured.fr> - 2.11-1
  1109. - Update to 2.11
  1110. - Fix the forked repo text on the user's PR page (Rahul Bajaj)
  1111. - Display the number of subscribers subscribed to the ticket
  1112. - Add an attachments section to tickets (Mark Reynolds)
  1113. - Small fixes around the git blame feature
  1114. - Add an `Add group` button on page listing the groups (Rahul Bajaj)
  1115. - Move the `My Issues` and `My Pull-requests` links under the user's menu
  1116. - Document the FORK_FOLDER configuration key as deprecated
  1117. - Display the subscribers to PR in the same way to display them on ticket
  1118. - Adjust the wording when showing a merge commit
  1119. - Ensure the last_updated field is always properly updated (Mark Reynolds)
  1120. - Fix decoding files when we present or blame them
  1121. - Disable the markdown extensions nl2br on README files
  1122. - Make issue reports public
  1123. - Only display modified time as the modifying user can not be determined (Mark
  1124. Reynolds)
  1125. - Add a new API endpoint returning information about a specific project
  1126. - Add a button allowing dropping of assignments for an issue easily (Paul W.
  1127. Frields)
  1128. - Make attachments of ticket downloadable (Mark Reynolds)
  1129. - Make patch/diff render nicely when viewed attached to a ticket (Mark Reynolds)
  1130. - Filter out the currrent ticket in the drop-down list for the blocker/depending
  1131. fields (Eric Barbour)
  1132. - Move the logging of the commit as activity to its own service: pagure_logcom
  1133. - Add a new API endpoint to set/reset custom fields on tickets
  1134. - Introduce the USER_NAMESPACE configuration key allowing to put the project on
  1135. the user's namespace by default
  1136. - Fix sending notifications about pull-requests to people watching a project
  1137. - Fix the list of blacklisted projects
  1138. - Inform the user when they try to create a new group using a display name
  1139. already used (Rahul Bajaj)
  1140. - Fix importing the milestones into the project when loading from the git repo
  1141. (Clement Verna)
  1142. - Add a button to create a default set of close status (as we have a default set
  1143. of priorities)
  1144. - Have pagure bail with an error message if the OpenID server did not return an
  1145. username
  1146. - Let the error email use the FROM_EMAIL address set in the configuration file
  1147. - Fix theprogress bar shown when listing issues (Gaurav Kumar)
  1148. - Replace our current tags by colored one (Mark Reynolds)
  1149. - Make the roadmap page use the colored tag (Mark Reynolds)
  1150. - Fix the tag of Open pull-request when listing all the pull-requests (Rahul
  1151. Bajaj)
  1152. - Remove the 'pagure.lib.model.drop_tables' from test/__init__.py file (Amol
  1153. Kahat)
  1154. - Fix the headers of the table listing all the pull-request
  1155. - Raise an exception when a PR was made against a branch that no longer exists
  1156. - Document what to do when pull-requests are not available in a troubleshooting
  1157. section of the documentation
  1158. - Send notification upon closing tickets
  1159. - Fix re-setting the close_status to None it when re-opening a ticket
  1160. - Fix linking to the tabs in the pull-request page (cep)
  1161. - Adjust the rundocserver utility script to have the same arguments as runserver
  1162. - Ensure the filtering by author remains when changing the status filter on PR
  1163. list (Rahul Bajaj)
  1164. - Improve the page/process to create a new API token (Pradeep CE)
  1165. - Prevent re-uploading a file with the same name
  1166. - Improve the roadmap page (Mark Reynolds)
  1167. - Improve the `My Issues` page (Mark Reynolds)
  1168. - Fix home page 'open issues' links for namespaced projects (Adam Williamson)
  1169. - Fix logging who did the action
  1170. - Return a nicer error message to the user when an error occurs with a remote
  1171. pull-request
  1172. - Make interacting with the different git repos a locked process to avoid
  1173. lost/orphan commits
  1174. - Update API doc for api_view_user (Clement Verna)
  1175. - Dont return 404 when viewing empty files (Pradeep CE (cep))
  1176. - Do not automatically update the last_updated or updated_on fields
  1177. - Make alembic use the DB url specified in the configuration file of pagure
  1178. - Only connect to the smtp server if we're going to send an email
  1179. - Add a type list to the custom fields (allows restricting the options) (Mark
  1180. Reynolds)
  1181. - Fix displaying non-ascii milestones
  1182. - Add the possibility to view all the milestones vs only the active ones (Mark
  1183. Reynolds)
  1184. * Sun Dec 04 2016 Pierre-Yves Chibon <pingou@pingoured.fr> - 2.10.1-1
  1185. - Update to 2.10.1
  1186. - Clean up the JS code in the settings page (Lubomír Sedlář)
  1187. - Fix the URLs in the `My Issues` and `My Pull-request` pages
  1188. * Fri Dec 02 2016 Pierre-Yves Chibon <pingou@pingoured.fr> - 2.10-1
  1189. - Update to 2.10
  1190. - Updating language on not found page (Brian (bex) Exelbierd)
  1191. - Add a view for open pull requests and issues (Jeremy Cline)
  1192. - Issue 1540 - New meta-data custom field type of "link" (Mark Reynolds)
  1193. - Fix overflow issue with comment preview and pre (Ryan Lerch)
  1194. - Issue 1549 - Add "updated_on" to Issues and make it queryable (Mark Reynolds)
  1195. - Drop UPLOAD_FOLDER in favor of UPLOAD_FOLDER_URL
  1196. - Make the group_name be of max 255 characters
  1197. - Bug - Update documentation to match the default EMAIL_SEND value (Michael
  1198. Watters)
  1199. - Change - Fix grammar in UI messages around enabling/deactivating git hooks
  1200. (Michael Watters)
  1201. - Allow resetting the priorities of a project
  1202. - Several fixes and enhancements around the activity calendarheatmap
  1203. - Add quick_replies field to project (Lubomír Sedlář)
  1204. - Fix blaming files containing non-ascii characters (Jeremy Cline and I)
  1205. - Include regular contributors when checking if user is watching a project
  1206. - List subscribers on the issue pages (Mark Renyolds and I)
  1207. * Fri Nov 18 2016 Pierre-Yves Chibon <pingou@pingoured.fr> - 2.9-1
  1208. - Update to 2.9
  1209. - Fix redirecting after updating an issue on a project with namespace (Vivek
  1210. Anand)
  1211. - Remove take button from Closed Issues (Rahul Bajaj)
  1212. - Show the open date/time on issues as we do for PR (Rahul Bajaj)
  1213. - When rendering markdown file use the same code path as when rendering comments
  1214. - Add documentation for using Markdown in Pagure (Justing W. Flory)
  1215. - Fix the behavior of the Cancel button on PR page (Rahul Bajaj)
  1216. - Be tolerant to markdown processing error
  1217. - Let the notifications render correctly when added by the SSE server
  1218. - Fix the URL for pull request on the list of branches of a fork (Rahul Bajaj)
  1219. - Adjust the markdown processor to have 1 regex for all cross-project links
  1220. - Remove unsued variables (Farhaan Bukhsh)
  1221. - Hide the title of private tickets when linking to them in markdown
  1222. - Show user activity in pagure on the user's page
  1223. - Add the possibility to subscribe to issues
  1224. - Do not cache the session in pagure-ci (as we did for pagure-webhook)
  1225. - Fix rendering raw file when the sha1 provided is one of a blob
  1226. - Include project's custom fields in the JSON representation of a project
  1227. - Include the issue's custom fields values in the JSON representation of an
  1228. issue
  1229. - Include the list of close_status and the milestones in the JSON of a project
  1230. - Improve documentation related to unit-tests (Rahul Bajaj)
  1231. - Use `project.fullname` in X-Pagure-Project header (Adam Williamson)
  1232. - Figure a way to properly support WTF_CSRF_TIME_LIMIT on older version of
  1233. flask-wtf
  1234. - When updating an issue, if the form does not validate, say so to the user
  1235. - Fix the total number of pages when there are no PR/issues/repo (vibhcool)
  1236. - Fix forking a repo with a namespace
  1237. - Include the namespace in the message returned in pagure.lib.new_project
  1238. - Move the metadata-ery area in PR to under the comments tab (Ryan Lerch)
  1239. - Update setup instructions in the README.rst (alunux)
  1240. - Support namespaced projects when reading json data (clime)
  1241. - When uploading a file in a new issue, propagate the namespace info
  1242. - Ensure our avatar works with non-ascii email addresses
  1243. - Downgrade to emoji 1.3.1, we loose some of the newer emojis we get back
  1244. preview and reasonable size (Clément Verna)
  1245. - Fix sending notifications email containing non-ascii characters
  1246. - Fix using the proper URL in email notifications (Adam Williamson)
  1247. - Move the Clear and Cancel buttons to the right hand side of the comment box
  1248. - Fix spelling in the PR page (Vibhor Verma)
  1249. - Support loading custom fields from JSON when loading issues from git (Vivek
  1250. Anand)
  1251. - Fix handling namespaced project in the SSE server (Adam Williamson)
  1252. - Add a pylintrc configuration file to help with code standards (Adam
  1253. Williamson)
  1254. - Add go-import meta tag allowing go projects to be hosted on pagure (Patrick
  1255. Uiterwijk)
  1256. - Fix index overflow when opening remote pull-request (Mark Reynolds)
  1257. - Add SSE support for custom fields
  1258. - Add a git blame view
  1259. - Allow emptying a file when doing online editing
  1260. - Only let admins edit the dependency tree of issues
  1261. - Fix some spelling errors (Adam Williamson)
  1262. - Add SHA256 signature to webhooks notifications (Patrick Uiterwijk)
  1263. - Multiple fixes in the API documentation and output
  1264. * Mon Oct 24 2016 Pierre-Yves Chibon <pingou@pingoured.fr> - 2.8.1-1
  1265. - Update to 2.8.1
  1266. - Handle empty files in detect_encodings (Jeremy Cline)
  1267. - Fix the import of encoding_utils in the issues controller
  1268. - Fix the list of commits page
  1269. - Update docs to dnf (Rahul Bajaj)
  1270. - Add close status in the repo table if not present when updating/creating issue
  1271. via git (Vivek Anand)
  1272. - If chardet do not return any result, default to UTF-8
  1273. * Fri Oct 21 2016 Pierre-Yves Chibon <pingou@pingoured.fr> - 2.8-1
  1274. - Update to 2.8
  1275. - Fix the migration adding the close_status field to remove the old status
  1276. only at the end
  1277. - Fix the RTD and Force push hooks for the change in location of the plugins
  1278. - Fix creating new PR from the page listing the pull-requests
  1279. - Add the possibility for the user to edit their settings in their settings page
  1280. - Include the close_status in the JSON representation of an issue
  1281. - Load the close_status if there is one set in the JSON repsentation given
  1282. - Fix running the tests when EVENTSOURCE_SOURCE is defined in the
  1283. configuration.
  1284. - Make the search case-insensitive when searching issues
  1285. - Fix the "cancel" button when editing a "regular" comment on a pull-request
  1286. - Remove the ``Content-Encoding`` headers from responses (Jeremy Cline)
  1287. - Fix creating the release folder for project with a namespace
  1288. - When sending email, make the user who made the action be in the From field
  1289. - When searching groups, search both their name and display name
  1290. - Create a Vagrantfile and Ansible role for Pagure development (Jeremy Cline)
  1291. - Made searching issue stop clearing status and tags filters (Ryan Lerch)
  1292. - Improve documentation (Bill Auger)
  1293. - Fix finding out the encoding of a file in git (Jeremy Cline)
  1294. - Fix making cross-project references using <project>#<id>
  1295. - Allow filter the list of commits for a certain user
  1296. - Ensure we disable all the submit button when clicking on one (avoid sending
  1297. two comments)
  1298. - Do not always compute the list of diff commits
  1299. - Let's not assume PAGURE_CI_SERVICES is always there
  1300. - Allow html table to define their CSS class
  1301. - Add a link to the user on the commit list (Ryan Lerch)
  1302. - Change `Fork` button to `View Fork` on all pages of the project (tenstormavi)
  1303. - Enable some of the markdown extensions by default
  1304. - Fix mixed content blocked in the doc by not sending our user to google (Rahul
  1305. Bajaj)
  1306. * Thu Oct 13 2016 Pierre-Yves Chibon <pingou@pingoured.fr> - 2.7.2-1
  1307. - Update to 2.7.2
  1308. - Do not show the custom field if the project has none
  1309. - Improve the documentation around SEND_EMAIL (Jeremy Cline)
  1310. * Wed Oct 12 2016 Pierre-Yves Chibon <pingou@pingoured.fr> - 2.7.1-1
  1311. - Update to 2.7.1
  1312. - Bug fix to the custom fields feature
  1313. * Tue Oct 11 2016 Pierre-Yves Chibon <pingou@pingoured.fr> - 2.7-1
  1314. - Update to 2.7
  1315. - Clean imports (Vivek Anand)
  1316. - Fix NoneType error when pagure-ci form is inactively updated first time
  1317. (Farhaan Bukhsh)
  1318. - Fix minor typos in configuration documentation (Jeremy Cline)
  1319. - Use context managers to ensure files are closed (Jeremy Cline)
  1320. - Adjust update_tickets_from_git to add milestones for issues as well (Vivek
  1321. Anand)
  1322. - Update milestone description in Settings (Lubomír Sedlář)
  1323. - Add checks for the validity of the ssh keys provided (Patrick Uiterwijk)
  1324. - Remove hardcoded hostnames in unit tests (Jeremy Cline)
  1325. - Skip clamd-dependent tests when pyclamd isn't installed (Patrick Uiterwijk)
  1326. - Fix interacting with branch containing a dot in their name (new PR button,
  1327. delete branch button)
  1328. - Ensure only project admins can create reports
  1329. - Do not warn admins when a build in jenkins did not correspond to a
  1330. pull-request
  1331. - Fix the progress bar on the page listing the issues (d3prof3t)
  1332. - Do not call the API when viewing a diff or a PR if issues or PRs are disabled
  1333. - Port pagure to flask 0.13+
  1334. - Fix displaying the reason when a PR cannot be merged
  1335. - Allow projects to turn on/off fedmsg notifications
  1336. - Fix the web-hook service so when a project is updated the service is as well
  1337. - Add the possibility to specify a status to close ticket (closed as upstream,
  1338. works for me, invalid...)
  1339. - Let all the optional SelectFields in forms return None when they should
  1340. - Make each tests in the test suite run in its own temporary directory (Jeremy
  1341. Cline)
  1342. - Use long dash in footer instead of two short ones (Lubomír Sedlář)
  1343. - Add a welcome screen to new comers (does not work with local auth)
  1344. - Ensure user are not logged in if we couldn't properly set them up in pagure
  1345. - Add the possibility to search through issues (AnjaliPardeshi)
  1346. - Add a default hook to all new projects, this hook re-set the merge status of
  1347. all the open PR upon push to the main branch of the repo
  1348. - Add support for setting custom fields for issues per projects
  1349. * Tue Sep 20 2016 Pierre-Yves Chibon <pingou@pingoured.fr> - 2.6-1
  1350. - Update to 2.6
  1351. - Fix creating new PR from the page listing all the PRs
  1352. - Fix grammar error in the issues and PRs page (Jason Tibbitts)
  1353. - Fall back to the user's username if no fullname is provided (Vivek Anand)
  1354. - Fix typo in the using_docs documentation page (Aleksandra Fedorova (bookwar))
  1355. - Fix viewing plugins when the project has a namespace (and the redirection
  1356. after that)
  1357. - Rework the milestone, so that a ticket can only be assigned to one milestone
  1358. and things look better
  1359. - Add a project wide setting allowing to make all new tickets private by default
  1360. (with the option to make them public)
  1361. - Allow toggling the privacy setting when editing the ticket's metadata
  1362. - Rework some of the logic of pagure-ci for when it searches the project related
  1363. to a receive notification
  1364. - Fix the label of the button to view all close issues to be consistent with the
  1365. PR page (Jeremy Cline)
  1366. - Add the possibility for projects to notify specific email addresses about
  1367. issues/PRs update
  1368. - Fix loading tickets from the ticket git repository (fixes importing project to
  1369. pagure)
  1370. * Tue Sep 13 2016 Pierre-Yves Chibon <pingou@pingoured.fr> - 2.5-1
  1371. - Update to 2.5
  1372. - Don't track pagure_env (venv) dir (Paul W. Frields)
  1373. - Setting Mail-Followup-To when sending message to users (Sergio Durigan Junior)
  1374. (Fixed by Ryan Lerch and I)
  1375. - Fixed the tickets hook so that we dont ignore the files committed in the first
  1376. commit (Clement Verna)
  1377. - Fix behavior of view of tree if default branch is not 'master' (Vivek Anand)
  1378. - Fix checking the release folder for forks
  1379. - Improve the Remote PR page
  1380. - Improve the fatal error page to display the error message is there is one
  1381. - Avoid issues attachment containing json to be considered as an issue to be
  1382. created/updated (Clement Verna)
  1383. - Allow the <del> html tag (Clement Verna)
  1384. - Specify rel="noopener noreferrer" to link including target='_blank'
  1385. - Show in the overview page when a branch is already concerned by a PR
  1386. - Fix viewing a tree when the identifier provided is one of a blob (not a tree)
  1387. - Port all the plugins to `uselist=False` in their backref to make the code
  1388. cleaner
  1389. - Fix pagure_ci for all sort of small issues but also simply so that it works as
  1390. expected
  1391. - Make the private method __get_user public as get_user
  1392. - Improve the documentation (fix typos and grammar errors) (Sergio Durigan
  1393. Junior)
  1394. - Drop the `fake` namespaces in favor of real ones
  1395. - Add the possibility to view all tickets/pull-requests of a project (regardless
  1396. of their status)
  1397. - Paginate the pages listing the tickets and the pull-requests
  1398. - Add the possibility to save a certain filtering on issues as reports
  1399. - Add support to our local markdown processor for ~~striked~~
  1400. * Wed Aug 31 2016 Pierre-Yves Chibon <pingou@pingoured.fr> - 2.4-1
  1401. - Update to 2.4
  1402. - - [Security] Avoid all html related mimetypes and force the download if any
  1403. (CVE-2016-1000037) -- Fixed in 2.3.4 as well
  1404. - Redirect the URL to projects <foo>.git to <foo> (Abhishek Goswami)
  1405. - Allow creating projects with 40 chars length name on newer pagure instances
  1406. - Fix @<user> and #<id> when editing a comment (Eric Barbour)
  1407. - Display properly and nicely the ACLs of the API tokens (Lubomír Sedlář)
  1408. - Removing html5lib so bleach installation finds what version is best (Tiago M.
  1409. Vieira)
  1410. - Remove the branchchooser from the repoheader (again) (Ryan Lerch)
  1411. - Fix hard-coded urls in the master template
  1412. - Made the interaction with the watch button clearer (Ryan Lerch)
  1413. - Introduce pagure-ci, a service allowing to integrate pagure with a jenkins
  1414. instance (Farhaan Bukhsh and I)
  1415. - Accept Close{,s,d} in the same way as Merges and Fixes (Patrick Uiterwijk)
  1416. - Avoid showing the 'New PR' button on the overview page is a PR already exists
  1417. for this branch, in the main project or a fork (Vivek Anand)
  1418. - Fix presenting the readme file and display the readme in the tree page if
  1419. there is one in the folder displayed (Ryan Lerch)
  1420. - Move the new issue button to be available on every page (AnjaliPardeshi)
  1421. - Fix pagure for when an user enters a comment containing #<id> where the id
  1422. isn't found in the db
  1423. - Make the bootstrap URLs configurable (so that they don't necessarily point to
  1424. the Fedora infra) (Farhaan Bukhsh)
  1425. - Fix how the web-hook server determine the project and its username
  1426. - Replace the login icon with plain text (Ryan Lerch)
  1427. - Fix layout in the doc (Farhaan Bukhsh)
  1428. - Improve the load_from_disk utility script
  1429. - Fix our mardown processor to avoid crashing on #<text> (where we expect #<id>)
  1430. - Fix the search for projects with a / in their names
  1431. - Fix adding a file to a ticket when running pagure with `local` auth
  1432. - Improve the grammar around the allowed prefix in our fake-namespaces (Jason
  1433. Tibbitts)
  1434. - Implement scanning of attached files for viruses (Patrick Uiterwijk)
  1435. - Document how to set-up multiple ssh keys per user (William Moreno Reyes)
  1436. - Add display_name and description to groups, and allow editing them
  1437. - Add the ability to run the post-receive hook after merging a PR in the UI
  1438. - Fix showing the group page even when user management is turned off (Vivek
  1439. Anand)
  1440. - Make explicit what the separators for tags is (Farhaan Bukhsh)
  1441. - Include the word setting with icon (tenstormavi)
  1442. - Fix the requirements.txt file (Vivek Anand)
  1443. - Cleaned up the topbar a bit (Ryan Lerch)
  1444. - Fix location of bottom pagination links on user page (Ryan Lerch)
  1445. - Add user's project watch list in index page of the user (Vivek Anand)
  1446. - Fix showing the reporter when listing the closed issues (Vivek Anand)
  1447. - Fix accessing forks once the main repo has been deleted (Farhaan Bukhsh)
  1448. * Wed Jul 27 2016 Pierre-Yves Chibon <pingou@pingoured.fr> - 2.3.4-1
  1449. - Update to 2.3.4
  1450. - Security fix release blocking all html related mimetype when displaying the
  1451. raw files in issues and forces the browser to download them instead (Thanks to
  1452. Patrick Uiterwijk for finding this issue) - CVE: CVE-2016-1000037
  1453. * Fri Jul 15 2016 Pierre-Yves Chibon <pingou@pingoured.fr> - 2.3.3-1
  1454. - Update to 2.3.3
  1455. - Fix redering the release page when the tag message contain only spaces (Vivek
  1456. Anand)
  1457. - Fix the search in @<username> (Eric Barbour)
  1458. - Displays link and git sub-modules in the tree with a dedicated icon
  1459. * Tue Jul 12 2016 Pierre-Yves Chibon <pingou@pingoured.fr> - 2.3.2-1
  1460. - Update to 2.3.2
  1461. - Do not mark as local only some of the internal API endpoints since they are
  1462. called via ajax and thus with the user's IP
  1463. * Mon Jul 11 2016 Pierre-Yves Chibon <pingou@pingoured.fr> - 2.3.1-1
  1464. - Update to 2.3.1
  1465. - Fix sending notifications to users watching a project
  1466. - Fix displaying if you are watching the project or not
  1467. * Mon Jul 11 2016 Pierre-Yves Chibon <pingou@pingoured.fr> - 2.3-1
  1468. - Update to 2.3
  1469. - Fix typos in pr_custom_page.rst (Lubomír Sedlář)
  1470. - Improve the unit-test suite (Vivek Anand)
  1471. - Remove the branch chooser from the repoheader and rework the fork button (Ryan
  1472. Lerch)
  1473. - Add support for non utf-8 file names (Ryan Lerch)
  1474. - Add a 'Duplicate' status for issues (Vivek Anand)
  1475. - Add title attribute for replying to comment and editing the comment in issues
  1476. and PRs (Vivek Anand)
  1477. - Include the user when reporting error by email
  1478. - Add an API endpoint to create projects
  1479. - Add an API endpoint to assign someone to a ticket
  1480. - Add small script to be ran as cron to send reminder of expiring tokens (Vivek
  1481. Anand)
  1482. - Do not show the PR button on branches for which a PR is already opened
  1483. - Add an API endpoint to fork projects
  1484. - Add the possibility to watch/unwatch a project (Gaurav Kumar)
  1485. - Add a 'Take' button on the issue page (Ryan Lerch and I)
  1486. - Add a dev-data script to input some test data in the DB for testing/dev
  1487. purposes (skrzepto)
  1488. - Fix links to ticket/pull-request in the preview of a new ticket
  1489. - Add the possibility to diff two or more commits (Oliver Gutierrez)
  1490. - Fix viewing a file having a non-ascii name
  1491. - Fix viewing the diff between two commits having a file with a non-ascii name
  1492. - On the commit detail page, specify on which branch(es) the commit is
  1493. - Add the possibility to have instance-wide admins will full access to every
  1494. projects (set in the configuration file)
  1495. - Drop the hash to the blob of the file when listing the files in the repo
  1496. - Add autocomple/suggestion on typing @<username> on a ticket or a pull-request
  1497. (Eric Barbour)
  1498. - Fix the edit link when adding a comment to a ticket via SSE
  1499. - Add notifications to issues as we have for pull-requests
  1500. - Record in the db the date at which a ticket was closed (Vivek Anand)
  1501. - Add the possibility for pagure to rely on external groups provided by the auth
  1502. service
  1503. - Add the possibility for pagure to use an SMTP server requiring auth
  1504. (Vyacheslav Anzhiganov)
  1505. - Add autocomple/suggestion on typing #<id> for tickets and pull-requests (Eric
  1506. Barbour)
  1507. - With creating a README when project's description has non-ascii characters
  1508. (vanzhiganov)
  1509. - Add colored label for duplicate status of issues (Vivek Anand)
  1510. - Ship working wsgi files so that they can be used directly from the RPM
  1511. - Mark the wsgi files provided with the RPM as %%config(noreplace)
  1512. - Install the api_key_expire_mail.py script next to the createdb one
  1513. * Wed Jun 01 2016 Pierre-Yves Chibon <pingou@pingoured.fr> - 2.2.1-1
  1514. - Update to 2.2.1
  1515. - Fix showing the inital comment on PR having only one commit (Ryan Lerch)
  1516. - Fix diffs not showing for additions/deletions for files under 1000 lines (Ryan
  1517. Lerch)
  1518. - Split out the commits page to a template of its own (Ryan Lerch)
  1519. - Fix hightlighting the commits tab on commit view
  1520. - Fix the fact that the no readme box show on empty repo (Ryan Lerch)
  1521. * Tue May 31 2016 Pierre-Yves Chibon <pingou@pingoured.fr> - 2.2-1
  1522. - Update to 2.2
  1523. - Fix retrieving the log level from the configuration file (Nuno Maltez)
  1524. - Rework the labels used when sorting projects (Ankush Behl)
  1525. - Fix spelling error in sample config (Bruno)
  1526. - Hide the URL to the git repo for issues if these are disabled
  1527. - Do not notify about tickets being assigned when loaded from the issue git repo
  1528. (Clément Verna)
  1529. - Adjust get_revs_between so that if the push is in the main branch we still get
  1530. the list of changes (Clément Verna)
  1531. - Fix display of files moved on both old and new pygit2 (Ryan Lerch)
  1532. - Fix changes summary sidebar for older versions of pygit (Ryan Lerch)
  1533. - Fix the label on the button to add a new milestone to a project (Lubomír
  1534. Sedlář)
  1535. - Allow the roadmap feature to have multiple milestone without dates (Lubomír
  1536. Sedlář)
  1537. - Fix the link to switch the roadmap/list views (Lubomír Sedlář)
  1538. - Render the emoji when adding a comment to a ticket or PR via SSE (Clément
  1539. Verna)
  1540. - Always allow adming to edit/delete comments on issues
  1541. - Build Require systemd to get macros defined in the spec file (Bruno)
  1542. - Upon creating a ticket if the form already has data, show that data
  1543. - Add a readme placeholder for projects without a readme (Ryan Lerch)
  1544. - Enable markdown preview on create pull request (Ryan Lerch)
  1545. - Make bottom pagination links on project list respect the sorting filter (Ryan
  1546. Lerch)
  1547. - Add the ability to create a README when creating a project (Ryan Lerch)
  1548. - Try to prevent pushing commits without a parent when there should be one
  1549. - Fix the configuration keys to turn off ticket or user/group management for an
  1550. entire instance (Vivek Anand)
  1551. - Fix deleting project (propagate the deletion to the plugins tables)
  1552. - Do not render the diffs of large added and removed files (more than 1000
  1553. lines) (Ryan Lerch)
  1554. - Adjust the UI on the template to add/remove a group or an user to a project in
  1555. the settings page (Ryan Lerch)
  1556. - Check if a tag exists on a project before allowing to edit it (skrzepto)
  1557. * Fri May 13 2016 Pierre-Yves Chibon <pingou@pingoured.fr> - 2.1.1-1
  1558. - Update to 2.1.1
  1559. - Do not render the comment as markdown when importing tickets via the ticket
  1560. git repo
  1561. - Revert get_revs_between changes made in
  1562. https://pagure.io/pagure/pull-request/941 (Clement Verna)
  1563. * Fri May 13 2016 Pierre-Yves Chibon <pingou@pingoured.fr> - 2.1-1
  1564. - Update to 2.1
  1565. - Fix the milter to get it working (hotfixed in prod)
  1566. - Fix the fedmsg hook so that it works fine (hotfixed in prod)
  1567. - Fix the path of one of the internal API endpoint
  1568. - Pass client_encoding utf8 when connecting to the DB (Richard Marko)
  1569. - Do not use client_encoding if using sqlite (Ryan Lerch)
  1570. - Allow project names up to 255 characters (Richard Marko)
  1571. - Add a spinner showing we're working on retrieve the PR status on the PR page
  1572. (farhaanbukhsh)
  1573. - Rework installing and removing git hooks (Clement Verna)
  1574. - Rework the summary of the changes on the PR page (Ryan Lerch)
  1575. - Improve the description of the priority system (Lubomír Sedlář)
  1576. - Fix commit url in the pagure hook (Mike McLean)
  1577. - Improve the regex when fixing/relating a commit to a ticket or a PR (Mike
  1578. McLean)
  1579. - Improve the description of the pagure hook (Mike McLean)
  1580. - Fix the priority system to support tickets without priority
  1581. - Fix the ordering of the priority in the drop-down list of priorities
  1582. - Ensure the drop-down list of priorities defaults to the current priority
  1583. - Adjust the runserver.py script to setup PAGURE_CONFIG before importing pagure
  1584. - Remove flashed message when creating a new project
  1585. - Add markdown support for making of PR# a link to the corresponding PR
  1586. - Include the priority in the JSON representation of a ticket
  1587. - Include the priorities in the JSON representation of a project
  1588. - Do not update the assignee if the person who commented isn't an admin
  1589. - When adding a comment fails, include the comment text in the form if there was
  1590. one
  1591. - Add support to remove a group from a project
  1592. - Add a roadmap feature with corresponding documentation
  1593. - Allow 'kbd' and 'var' html tags to render properly
  1594. - Fix deleting a project on disk as well as in the DB
  1595. - Allow setting the date_created field when importing ticket from git (Clement
  1596. Verna)
  1597. - Strip GPG signature from the release message on the release page (Jan Pokorný)
  1598. - Make comment on PR diffs fit the parent, and not overflow horiz (Ryan Lerch)
  1599. * Sun Apr 24 2016 Pierre-Yves Chibon <pingou@pingoured.fr> - 2.0.1-1
  1600. - Update to 2.0.1
  1601. - Fixes to the UPGRADING documentation
  1602. - Fix URLs to the git repos shown in the overview page for forks
  1603. - Fix the project titles in the html to not start with `forks/`
  1604. * Fri Apr 22 2016 Pierre-Yves Chibon <pingou@pingoured.fr> - 2.0-1
  1605. - Update to 2.0
  1606. - Rework the initial comment of a PR, making it less a comment and more
  1607. something that belong to the PR itself
  1608. - Fix showing or not the fork button when editing a comment on an issue or a PR
  1609. and fix the highlighted tab when editing comment of an issue (Oliver
  1610. Gutierrez)
  1611. - Fix the count of comments shown on the page listing all the PRs to include
  1612. only the comments and not the notifications (farhaanbukhsh)
  1613. - In the settings page explain that API keys are personal (Lubomír Sedlář)
  1614. - Rework the fedmsg message sent upon pushing commits, one message per push
  1615. instead of one message per commit
  1616. - Mark the page next/previous as disabled when they are (on browse pages)
  1617. - Avoid the logout/login loop when logging out
  1618. - Support rendering file with a `.markdown` extension
  1619. - Fix the layout of the password change branch
  1620. - Improve the documentation, add overview graphs, expand the usage section,
  1621. improve the overview description
  1622. - Fix checking if the user is an admin of a project or not (which was making the
  1623. user experience confusing as they sometime had the fork button and sometime
  1624. not)
  1625. - Fix the pagination on the browse pages when the results are sorted
  1626. - Disable the Commit and Files tabs if a repo is new
  1627. - Update the pagure logo to look better (Ryan Lerch)
  1628. - Allow anyone to fork any project (Ryan Lerch)
  1629. - Fix searching on the browse pages by preventing submission of the 'enter' key
  1630. (Ryan Lerch)
  1631. - Rework the issue page to be a single, large form allowing to update the
  1632. meta-data and comment in one action and fixing updating the page via SSE
  1633. - Turn off the project's documentation by default to empty `Docs` tab leading to
  1634. nothing
  1635. - Fill the initial comment with the body of the commit message if the PR only
  1636. has one commit (Ryan Lerch)
  1637. - Add a plugin/git hook allowing to disable non fast-forward pushes on a branch
  1638. basis
  1639. - Fix asynchronous inline comments in PR by fixing the URL to which the form is
  1640. submitted
  1641. - Add a plugin/git hook allowing to trigger build on readthedocs.org upon git
  1642. push, with the possibility to restrict the trigger to only certain branches
  1643. - Automatically scroll to the highlighted range when viewing a file with a
  1644. selection (Lubomír Sedlář)
  1645. - Indicate the project's creation date in the overview page (Anthony Lackey)
  1646. - Clear the `preview` field after adding a comment via SSE
  1647. - Adjust the unit-tests for the change in behavior in pygments 2.1.3
  1648. - Fix listing all the request when the status is True and do not convert to text
  1649. request.closed_at if it is in fact None
  1650. - Improved documentation
  1651. - Attempt to fix the error `too many open files` on the EventSource Server
  1652. - Add a new param to runserver.py to set the host (Ryan Lerch)
  1653. - Fix the of the Docs tab and the Fork button with rounded corners (Pedro Lima)
  1654. - Expand the information in the notifications message when a PR is updated (Ryan
  1655. Lerch)
  1656. - Fix hidding the reply buttons when users are not authenticated (Paul W. Frields)
  1657. - Improve the description of the git hooks (Lubomír Sedlář)
  1658. - Allow reply to a notification of pagure and setting the reply email address as
  1659. Cc
  1660. - In the fedmsg git hook, publish the username of all the users who authored the
  1661. commits pushed
  1662. - Add an activity page/feed for each project using the information retrieved
  1663. from datagrepper (Ryan Lerch)
  1664. - Fix showing lightweight tags in the releases page (Ryan Lerch)
  1665. - Fix showing the list of branches when viewing a file
  1666. - Add priorities to issues, with the possibility to filter or sort them by it in
  1667. the page listing them.
  1668. - Add support for pseudo-namespace to pagure (ie: allow one '/' in project name
  1669. with a limited set of prefix allowed)
  1670. - Add a new plugin/hook to block push containing commits missing the
  1671. 'Signed-off-by' line
  1672. - Ensure we always use the default email address when sending notification to
  1673. avoid potentially sending twice a notification
  1674. - Add support for using the keyword Merge(s|d) to close a ticket or pull-request
  1675. via a commit message (Patrick Uiterwijk)
  1676. - Add an UPGRADING.rst documentation file explaining how to upgrade between
  1677. pagure releases
  1678. * Tue Mar 01 2016 Pierre-Yves Chibon <pingou@pingoured.fr> - 1.2-1
  1679. - Update to 1.2
  1680. - Add the possibility to create a comment when opening a pull-request (Clement
  1681. Verna)
  1682. - Fix creating PR from a fork directly from the page listing all the PR on the
  1683. main project (Ryan Lerch)
  1684. - Color the label showing the issues' status on the issue page and the page
  1685. listing them (Ryan Lerch)
  1686. - Add a small padding at the bottom of the blockquote (Ryan Lerch)
  1687. - In the list of closed PR, replace the column of the assignee with the date of
  1688. closing (Ryan Lerch)
  1689. - Drop font awesome since we no longer use it and compress the png of the
  1690. current logo (Ryan Lerch)
  1691. - Drop the svg of the old logo from the source (Ryan Lerch)
  1692. - Add descriptions to the git hooks in the settings page (farhaanbukhsh)
  1693. - Fix the pagure git hook
  1694. * Wed Feb 24 2016 Pierre-Yves Chibon <pingou@pingoured.fr> - 1.1.1-1
  1695. - Update to 1.1.1
  1696. - Fix showing some files where decoding to UTF-8 was failing
  1697. - Avoid adding a notification to a PR for nothing
  1698. - Show notifications correctly on the PR page when received via SSE
  1699. * Tue Feb 23 2016 Pierre-Yves Chibon <pingou@pingoured.fr> - 1.1-1
  1700. - Update to 1.1
  1701. - Sort the release by commit time rather than name (Clerment Verna)
  1702. - Add a link to the markdown syntax we support
  1703. - Add the possibility to display custom info when creating a new PR
  1704. - Improve the title of the issue page
  1705. - Make the ssh_info page more flexible so that we can add new info more easily
  1706. - Add the possibility to resend a confirmation email when adding a new email
  1707. address
  1708. - Encode the email in UTF-8 for domain name supporting it
  1709. - Add a button to easily change your avatar in your settings' page (Clement
  1710. Verna)
  1711. - Expand our markdown processor to support implicit linking to both PR and
  1712. issues
  1713. - Fix running the unit-tests on F23
  1714. - Fix deleting in the UI branches containing a slash ('/') in their name
  1715. - Add the possibility to always have a merge commit when merging a PR
  1716. - Add the project's avatar to the list in front page when authenticated
  1717. - Make the dependency on flask-fas-openid (part of python-fedora) optional
  1718. - Prevent our customized markdown to create link on foo.com if it doesn't start
  1719. with {f,ht}tp(s) (Clement Verna)
  1720. - Bring back the delete ticket button (Ryan Lerch)
  1721. - Add the possibility to notify someone when it is mentioned in a comment via
  1722. @username
  1723. - Fix setting the default value of the web-hook setting and its display in the
  1724. settings page
  1725. - Add the possibility to have templates for the issues
  1726. - Add a button on the doc page to open it in a new tab
  1727. - Add the concept of notifications on PR allowing to indicate when a PR is
  1728. updated or rebased
  1729. - Fix allowing people with non-ascii username to merge PR with a merge commit
  1730. - Add the possibility to theme your pagure instance and customized its layout at
  1731. will
  1732. - Add the possibility to always see inline-comments even if the file was changed
  1733. since
  1734. - Improve the error message given to the user upon error 500 (Patrick Uiterwijk)
  1735. - Stop relying on pygit2 to determine if a file is a binary file or not and
  1736. instead use the python library binaryornot
  1737. - Store in the DB the identifier of the tree when an inline comment is made to a
  1738. PR, this way it will be simpler to figure out a way to add the context of this
  1739. comment either by email on in the UI
  1740. - Add styling to blockquotes so that we see what is the quote and what is the
  1741. answer when replying to someone
  1742. - Prevent users from adding again an email pending confirmation
  1743. - Fix the preview box for long comment (Ryan Lerch)
  1744. - Add the possibility to sort the projects when browsing them (Ryan Lerch)
  1745. * Thu Feb 04 2016 Pierre-Yves Chibon <pingou@pingoured.fr> - 1.0.2-1
  1746. - Update to 1.0.2
  1747. - Rework the PR page (Ryan Lerch)
  1748. - Add ssh_info to blacklist in default config (Ryan Lerch)
  1749. - Restyle the ssh_info page (Ryan Lerch)
  1750. - Fix hiding the preview pane when creating an issue (Ryan Lerch)
  1751. - Indicate the number of comments on the PR when listing them (Ryan Lerch)
  1752. - Fix showing the links to issues when previewing a comment
  1753. - Ensure some more that the page number isn't below 1
  1754. - Do not show the edit and delete buttons to everyone when adding a comment via
  1755. SSE
  1756. - Update the requirements.txt for a missing dependency on Ubuntu (vanzhiganov)
  1757. - Improving sorting the release tags in the release page (Clement Verna)
  1758. * Mon Feb 01 2016 Pierre-Yves Chibon <pingou@pingoured.fr> - 1.0.1-1
  1759. - Update to 1.0.1
  1760. - Improve the fork list (Ryan Lerch)
  1761. - Make sure the images on comments do not exceed the size of the comment
  1762. box/area (Ryan Lerch)
  1763. - Improve the page listing all issues (Ryan Lerch)
  1764. - Include the project information when sending a fedmsg message about editing a
  1765. comment
  1766. - Allow <span> tags in rst files so that the README shows fine
  1767. - Fix linking directly to a specific comment in a PR
  1768. - Fix adding comment in a PR via SSE
  1769. - Fix updating issue information via SSE
  1770. - Fix the reply buttons on the issue page
  1771. - Remove the choice for a status when creating a new ticket (Farhaandukhsh)
  1772. - Fix deleting a branch from the UI
  1773. - Make the cards have rounded corners (Sayan Chowdhury)
  1774. - Fix showing the description of form field (Vivek Anand)
  1775. - Fix checking if the passwords added are the same (for local accounts)
  1776. (Vivek Anand)
  1777. - Fix displaying emojis when previewing a comment on a ticket (Clement Verna)
  1778. - Add support for emojis when creating a new ticket (Clement Verna)
  1779. * Wed Jan 27 2016 Pierre-Yves Chibon <pingou@pingoured.fr> - 1.0-1
  1780. - Update to 1.0
  1781. - Entirely new UI thanks to the hard work on Ryan Lerch
  1782. - Add the possibility to edit comments on PR/Tickets (and the option to disable
  1783. this) (farhaanbukhsh)
  1784. - Add the number of open Tickets/PR on the project's menu
  1785. - Also allow PRs to be closed via a git commit message (Patrick Uiterwijk)
  1786. - Disable issues and PR on forks by default (Vivek Anand)
  1787. - Fix deleting the temporary folders we create
  1788. - Un-bundle flask_fas_openid (requires python-fedora 0.7.0 or higher
  1789. - Add support for an openid backend (ie same thing as FAS but w/o the FPCA
  1790. enforcing)
  1791. - Add support to view rst/markdown files as html directly inline (default) or as
  1792. text (Yves Martin)
  1793. - Change the encryption system when using pagure with local auth to not be
  1794. time-sensitive and be stronger in general (farhaanbukhsh)
  1795. - Change the size of the varchar from 256 to 255 for a better MySQL support
  1796. - Add support for pagure to work behind a reverse proxy
  1797. - Rename the cla_required decorator to a more appropriate login_required
  1798. - Show the in the front page and the page listing all the pull-requests the
  1799. branch for which a PR can be opened
  1800. - Rework the avatar to not rely on the ones associated with id.fedoraproject.org
  1801. - Add support to high-light a section of code in a PR and show the diff
  1802. automatically if there is such selection
  1803. * Mon Dec 14 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1.36-1
  1804. - Update to 0.1.36
  1805. - Add the ssh info on the front page if the repo is empty
  1806. - Make the code handling exception be python3 compatible
  1807. - Make pagure compatible with F23 (ie: pygit2 0.23.0)
  1808. - Fix pagination when rendering the repo blocks (Gaurav Kumar)
  1809. - Make the SHOW_PROJECTS_INDEX list what should be showing in the index page
  1810. - Adjust pagure to work on recent version of psutils as well as the old one
  1811. - Added 'projects' to the blacklisted list of projects (Gaurav Kumar)
  1812. - Removed delete icons for non group members on the group info page (Gaurav
  1813. Kumar)
  1814. - Fixed forbidden error for PR title editing (Gaurav Kumar)
  1815. * Mon Nov 30 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1.35-1
  1816. - Update to 0.1.35
  1817. - Fix the web-hook server by preventing it to raise any exception (rather log
  1818. the errors)
  1819. * Mon Nov 30 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1.34-1
  1820. - Update to 0.1.34
  1821. - Fix the encoding of the files we're displaying on the UI
  1822. - Fix commenting on the last line of a diff
  1823. - Fix returning error message from the internal API (shows the PR as conflicting
  1824. then)
  1825. - Fix stacktrace encountered in some repo if the content of a folder is empty
  1826. (or is a git submodule)
  1827. - Split the web-hooks into their own server
  1828. - If you try to fork a forked project, redirect the user to the fork
  1829. - Show the repo from and repo to when opening a new PR
  1830. - Add the pagination links at the bottom of the repo list as well
  1831. - Add the groups to the pool of users to notify upon changes to a project
  1832. - Hide private repo from user who do not have commit access
  1833. * Fri Nov 20 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1.33-1
  1834. - Update to 0.1.33
  1835. - Prevent project with a name starting with a non-alphanumerical character
  1836. (Farhaanbukhsh)
  1837. - Ensure we appropriately set the private flag when creating an issue
  1838. - Add an activity graph on the user profile using datagrepper
  1839. - Sometime the identified we get is a Tag, not a commit (fixes traceback
  1840. received by email)
  1841. - Order the PR from the most recent to the oldest
  1842. - Fix the patch view of a PR when we cannot find one of the commit (fixes
  1843. traceback received by email)
  1844. - Allow user that are not admin to create a remote pull-request
  1845. - Fix closing the EV server by calling the appropriate variable
  1846. - Fix generating the diff of remote pull-request
  1847. * Fri Nov 13 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1.32-1
  1848. - Update to 0.1.32
  1849. - Fix the example configuration file
  1850. - Make pagure work on MySQL
  1851. - Hide sections on the front page only if the user is logged out
  1852. - Fix the release page where sometime tags are commits
  1853. - Escape the raw html in markdown
  1854. - Decode the bytes returned by pygit2 to try to guess if the content is a text
  1855. or not
  1856. - Fix the 'Clear' button on the pull-request page (farhaanbukhsh)
  1857. - Fix installing pagure in a venv
  1858. - Fix uploading images when editing the first comment of a ticket
  1859. - Let the author of the merge commit be the user doing the merge
  1860. - Suggest the title of the PR only if it has one and only one commit in
  1861. - Do not hide sections on the user page if we set some to be hidden on the front
  1862. page
  1863. - Forward the head to the commits page to fix the pull-request button
  1864. - Ensure we create the git-daemon-export-ok when forking a repo (fixes cloning
  1865. over https)
  1866. - Add instructions on how to get pagure working in a venv (Daniel Mach)
  1867. - Improve the way we retrieve and check pygit2's version (Daniel Mach)
  1868. * Tue Oct 13 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1.31-1
  1869. - Forward the bail_on_tree boolean when iterating so that we know how to behave
  1870. when we run into a git tree (where we expected a git blob)
  1871. -> fixes error received by email
  1872. * Tue Oct 13 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1.30-1
  1873. - Fix error received by email by checking the right variable if it is a git tree
  1874. or a git blob
  1875. - Unless we explicitly accept all images tag, always filter them (fixes
  1876. attaching images to a ticket)
  1877. * Tue Oct 13 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1.29-1
  1878. - Use monospace fonts for online editing as well as comment on tickets and
  1879. pull-requests
  1880. - Fix online editing of symlinked files (such as the README)
  1881. - Handle potential error when converting from rst to html
  1882. * Mon Oct 12 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1.28-1
  1883. - Update to 0.1.28
  1884. - Fix the call to noJS() in the pull-request template to avoid crashing
  1885. - Improve the runserver script in the sources
  1886. - Fix the projects pagination on the index page
  1887. - Create the git-daemon-export-ok file upon creating a new project/git
  1888. - Use first line of commit message for PR title when only one commit (Maciej
  1889. Lasyk)
  1890. - Show the tag message near the tag in the release page
  1891. - Set the default_email when creating a local user account
  1892. * Mon Oct 05 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1.27-1
  1893. - Update to 0.1.27
  1894. - Skip writing empty ssh keys on disc
  1895. - Regenerate authorized_keys file on ssh key change (Patrick Uiterwijk)
  1896. * Mon Oct 05 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1.26-1
  1897. - Update to 0.1.26
  1898. - Let admins close PRs as well
  1899. * Mon Oct 05 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1.25-1
  1900. - Update to 0.1.25
  1901. - Improve the documentation (especially the part about configuring pagure and
  1902. all the options the configuration file supports)
  1903. - Remove the two trailing empty lines when showing a file online
  1904. - Add a link on the issue list to be able to filter all the unassigned issues
  1905. - Rework the layout of the pull-request page
  1906. - Rework the commit list in the PR page to allow showing the entire commit
  1907. message
  1908. - Let any user create remote pull-request otherwise what's the point?
  1909. - Add the possibility to edit the title of a pull-request
  1910. - Add a page listing all the pull-requests of an user (opened by or against)
  1911. - Add support for multiple ssh-keys (Patrick Uiterwijk)
  1912. - Ensure the authorized_keys file is generated by gitolite (Patrick Uiterwijk)
  1913. - Fix the regex for @<username>
  1914. - Improve the display of renamed files in PR
  1915. - Add option to disable entirely the user/group management from the UI
  1916. - Add an updated_on field to Pull-Request
  1917. - Add an closed_at field to Pull-Request
  1918. - Allow the submitter of a PR to close it (w/o merging it)
  1919. - Disable editing a pull-request when that one is closed/merged
  1920. - Add option to hide by default a part of the index page (ie: all the repos, the
  1921. user's repos or the user's forks)
  1922. - Drop the csrf_token from the error emails sent to the admins
  1923. * Tue Sep 08 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1.24-1
  1924. - Update to 0.1.24
  1925. - Fix changelog to add the -release
  1926. - Block the <img> tag on titles
  1927. - Better fedmsg notifications (for example for new branches or rebase)
  1928. - Support uploading multiple files at once
  1929. - Add a load_from_disk utility script to the sources
  1930. - Fix indentation to the right on very long pull-request
  1931. * Sun Aug 30 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1.23-1
  1932. - Update to 0.1.23
  1933. - Return a 404 error if we can't find the doc repo asked
  1934. - Fix for #106 Allow setting the default branch of the git repo and in the UI
  1935. (Ghost-script)
  1936. - Improve unit-tests suite
  1937. - Add a global boolean to disable entirely tickets on all projects of a pagure
  1938. instance (with no way to re-set them per project)
  1939. - Do display uploading a tarball if it is not entirely configured
  1940. - Ensure we do not offer to reply by email if the milter is not set up
  1941. - Ensure there is no new line character on the msg-id and improve logging in the
  1942. milter
  1943. - Add a configuration key to globally disable creating projects
  1944. - Add a configuration key to globally disable deleting projects
  1945. - Add the possibility to search projects/users
  1946. - Drop links to the individual commits in a remote pull-request
  1947. - Input that are cleaned via the noJS filter are safe to be displayed (avoid
  1948. double HTML escaping)
  1949. - When writing the authorized_key file, encode the data in UTF-8
  1950. - Makes page title easier to find in multi-tab cases (dhrish20)
  1951. - Fix authorized_keys file creation (Patrick Uiterwijk)
  1952. - Honor also symlinked README's in repo overview (Jan Pakorný)
  1953. - Fix the patch generation for remote PR
  1954. - Fix showing the comment's preview on the pull-request page
  1955. - Fix bug in checking if a PR can be merged
  1956. * Fri Aug 07 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1.22-1
  1957. - Update to 0.1.22
  1958. - Adjust the README to the current state of pagure
  1959. - Rework how we integrate our custom tags into markdown to avoid the infinite
  1960. loop we run into once in a while
  1961. * Wed Aug 05 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1.21-1
  1962. - Update to 0.1.21
  1963. - Make SSH protocol explicit for SSH URLs (Till Maas)
  1964. - Adjust the documentation (layout and content)
  1965. - Rework the doc server to allow showing html files directly
  1966. - Fix installing the pagure hook correctly (tickets and requests)
  1967. - Give proper attribution to the pagure logo to Micah Deen in the documentation
  1968. - Increase pull request text field lengths to 80 (Till Maas)
  1969. - Fix who can open a remote PR and the check that the repo allows PR
  1970. - If there is no commit and no content, it means we didn't find the file: 404
  1971. * Wed Jul 29 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1.20-1
  1972. - Update to 0.1.20
  1973. - Include the tags in the JSON representation of a project
  1974. - Add the ability to open a pull-request from a git repo not hosted on pagure
  1975. - Fix pagination when browsing the list of commits
  1976. - Fix the fork button when viewing the Settings of a project
  1977. - Adjust the example apache configuration file
  1978. - Add a favicon with pagure's logo
  1979. - Fix asynchronous commentting on pull-requests
  1980. - Start working on some documentation on how to install pagure
  1981. - Do no flash messages when a comment is submitted via javascript (ie: async)
  1982. - Do not blink the tittle of the page if the page is already on focus
  1983. - Retrieve ssh key from FAS and set it up in pagure if none is currently set-up
  1984. - Fix anchors for comments on the pull-request pages
  1985. - Fix checking the merge status of a PR when user is not logged in
  1986. * Mon Jul 20 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1.19-1
  1987. - Update to 0.1.19
  1988. - Prettify the JSON stored in the git for tickets/requests... (Simo Sorce)
  1989. - Use the project name as subject tag in the notifications sent (Simo Sorce)
  1990. - Add an X-pagure header with either the pagure instance or the project name
  1991. - Reset the merge status of all the open PR when one is merged
  1992. - Add a second server listing the number of connections opened on the first
  1993. eventsource server
  1994. - Log the info instead of printing them in the eventsource server
  1995. - Split the documentation to a different wsgi application to avoid any risk of
  1996. cross-site forgery
  1997. - Fix the JS logic when adding a tag or a dependency to avoid having duplicates
  1998. in the input field
  1999. - Allow deleting a git branch of a project via the UI
  2000. - Include the font-awesome in the source rather than relying on an external cdn
  2001. - Do not try to connect to the eventsource server if we're not viewing a
  2002. pull-request
  2003. - Fix showing the first comment made on a PR via the eventsource server
  2004. - Fix showing the git URLs in the doc server
  2005. - Much better API documentation (Lei Yang)
  2006. - Handle showing closed PR that were not merged
  2007. - Fix refreshing the UI of private tickets via the eventsource (making calls to
  2008. the API to get the info while only getting what changed via the SSE)
  2009. - Fix the anchor links in the API documentation
  2010. - Blink the tab upon changes in the page
  2011. - Ensure we close both SSE server when stopping pagure_ev
  2012. - Let the HTML form trigger if we did not connect to the EV server successfully
  2013. - The admins of a repo are anyone with commit access to the repo, directly or
  2014. via a group
  2015. - Order the project by names in the front page (instead of creation date)
  2016. - Add the ability to tag a project
  2017. - Fix the fedmsg_hook when there are only deletions or only additions
  2018. - Add a new API endpoint allowing to search projects (by name, author, tag ...)
  2019. - Make pagure compatible with pygit 0.22.0
  2020. - Adjust unit-tests for all these changes
  2021. * Mon Jun 22 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1.18-1
  2022. - Update to 0.1.18
  2023. - Fix the eventsource server for CORS
  2024. - Fix showing/checking the merge status of a PR
  2025. * Mon Jun 22 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1.17-1
  2026. - Update to 0.1.17
  2027. - Fix for missing docs of API issue add comment (Kunaal Jain)
  2028. - Fix the systemd init file
  2029. - Be more careful about the URL specified, it may be of the wrong format in the
  2030. eventsource server
  2031. - Allow configuring the port where the event source server runs in the
  2032. configuration
  2033. - Fix bug in filter_img_src introduced with its moved to the backend library
  2034. * Thu Jun 18 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1.16-1
  2035. - Update to 0.1.16
  2036. - Clone all the remote branches when cloning a project
  2037. - Allow online editing to a new branch or any of the existing ones
  2038. - Allow the <hr /> html tags in markdown
  2039. - Add eventsource support in the ticket and pull-request pages
  2040. * Tue Jun 16 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1.15-1
  2041. - Update 0.1.15
  2042. - Use a monospace font for the commit hash
  2043. - Remove duplicated "commit" id in the HTML (causing a graphical bug in the
  2044. commit page)
  2045. - Secure the input using the no_js filter instead of relying on a restrictive
  2046. regex for PR and issue titles
  2047. - Support ',' in the tags field since it's required to specify multiple tags
  2048. * Fri Jun 12 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1.14-1
  2049. - Update to 0.1.14
  2050. - Remove all new lines characters from the ssh key uploaded
  2051. - Adjust the URL in the footer to point to https://pagure.io/pagure
  2052. - Fix displaying the time of a comment
  2053. - Forbid the use of spaces in group name
  2054. - Do not get the list of not-merged commits if there is only 1 branch in the
  2055. repo
  2056. - Display the error message if pagure.lib.add_group raises an exception
  2057. - Add a new setting enforcing that all commits in a PR are signed-off by their
  2058. author
  2059. - Enforce that all commits are signed-off by the author if the repo is
  2060. configured for this
  2061. - Also check for the signed-off status before merging a pull-request
  2062. - Adjust online-editing to allow specifying which email address to use in the
  2063. commit
  2064. - Add an avatar_email field to projects
  2065. - Change the PullRequest's status from a Boolean to a Text restricted at the DB
  2066. level (Allows to distinguish Open/Merged/Closed)
  2067. - Show in the pull-request view who merged the pull-request
  2068. - Specify who closed the pull-request in the API output
  2069. - Catch GitError when merging and checking merge status of a PR
  2070. - Hide the form to create pull-requests if the user is not an admin of the repo
  2071. - Replace the Pull-Request button by a Compare button if the user it not a repo
  2072. admin
  2073. - Set the title of the tab as URL hash to allow directly linking to it
  2074. - Adjust the API to be able to distinguish API authentication and UI
  2075. authentication
  2076. - Fix API documentation to create new issues
  2077. - Drop the status from the requirements to open a new issue via the API
  2078. - Expand the list of blacklisted project names
  2079. - Have the code tags behave like pre tags (html tags)
  2080. - Allow project to specify an URL and display it on their page
  2081. - Strip the ssh keys when writing them to the authorized_keys file
  2082. - Disable javascript in all the markdown fields
  2083. - Validate early the input submitted in the forms (using more or less strict
  2084. regex)
  2085. - If the session timed-out, redirect to the setting page after authentication
  2086. and inform the user that the action was canceled
  2087. - Catch PagureException when adjusting the project's settings
  2088. - Redirect the /api endpoint to the api documentation place
  2089. - Fix how is retrieved the list of emails to send the notification to
  2090. - Sanitize the html using bleach to avoid potential XSS exploit
  2091. - Do not give READ access to everyone on the tickets and pull-requests repos to
  2092. avoid leaking private tickets
  2093. - Adjust the unit-tests for all these changes
  2094. * Fri Jun 05 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1.13-1
  2095. - Update to 0.1.13
  2096. - Do not show the edit button if the user cannot edit the file
  2097. - Fix who is allowed to drop comments
  2098. - Fix showing the drop comment button on issue comments
  2099. - Fix creating the pull-request for fast people like @lmacken
  2100. - Display the target of the PR as well as the origin in the PR page
  2101. - Limit the size of the lists on the front page
  2102. * Fri Jun 05 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1.12-1
  2103. - Update to 0.1.12
  2104. - Fix the URL where the sources upload are done
  2105. - Upload the new sources under the project's name (be it project or
  2106. user/project)
  2107. * Fri Jun 05 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1.11-1
  2108. - Update to 0.1.11
  2109. - Another fix for the fedmsg_hook git hook
  2110. - Adjust how we display the README page to avoid XSS there as well
  2111. - Add the possibility to disable plugins via the configuration file
  2112. - Present the git tags in the UI
  2113. - As soon as the API user present a token, validate it or not, even if the
  2114. endpoint would work without token
  2115. - Integrate alembic for DB scheme migration
  2116. - Cache the PR's merge status into the DB
  2117. - Only people with access to the project can add/remove API token
  2118. - Make the unit-tests run on bare repos as in prod
  2119. - First stab at online editing
  2120. - Simplify the API output to drop the project's settings where it doesn't
  2121. make sense
  2122. - First stag at allowing upstream to upload their release to pagure
  2123. - Fix merging a PR into another branch than master
  2124. - Reduce code duplication when checking if a PR can be merged or merging it
  2125. - Code style clean-up
  2126. * Tue Jun 02 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1.10-1
  2127. - Update to 0.1.10
  2128. - Add support for URL ending with a trailing slash where it makes sense (so
  2129. we support both with and without trailing slash)
  2130. - Fix XSS issue by disabling <script> tags in the documentation pages
  2131. - Expend the unit-test suite for the api.project controller
  2132. - Add the possibility for 3rd party apps to 'flag' a pull-request with for
  2133. example the result of a build
  2134. - Handle the situation where there are multiple branch of the same name in
  2135. the same repo
  2136. - Fix the color of the link on hover when displayed within a tab view
  2137. (for example in the PR pages)
  2138. - Redirect the user to the pull-request created after its the creation
  2139. - Do not leak emails over fedmsg
  2140. - Fix the fedmsg_hook plugin
  2141. * Fri May 29 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1.9-1
  2142. - Update to 0.1.9
  2143. - Initial API work
  2144. - Document the initial API
  2145. - Fix the CSS to present the links correctly
  2146. - Add new API endpoint to list the git tags of a project
  2147. - Ensure the DB is updated regarding the start and stop commits before merging
  2148. * Wed May 27 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1.8-1
  2149. - Update 0.1.8
  2150. - Add the possibility to do Asynchronous in-line comment posting
  2151. (Patrick Uiterwijk)
  2152. - Handle the situation where the branch asked is not found in the git repo
  2153. - Handle the situation where we cannot find a desired commit
  2154. - Do not display a value in the settings page if there are none
  2155. - Rework the pull-request view to move the list of commits into a tab
  2156. - Make email sending optional (Patrick Uiterwijk)
  2157. * Fri May 22 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1.7-1
  2158. - Update to 0.1.7
  2159. - Drop debugging code on the milter and the hooks
  2160. - Adjust the search_issues method to support filter for some tags, excluding
  2161. some others (for example ?tags=easfix&tags=!0.2)
  2162. - Support groups when searching an user's projects (ie: finding the projects an
  2163. user has access to via the group their are in)
  2164. - Do not load the git repo from the FS when loading an user's page
  2165. - Present and document the SSH keys in a dedicated documentation page
  2166. * Wed May 20 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1.6-1
  2167. - Update to 0.1.6
  2168. - Fix sending notification emails to multiple users, avoid sending private into
  2169. to all of them
  2170. * Tue May 19 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1.5-1
  2171. - Update to 0.1.5
  2172. - Bug fix on the milter and the internal API endpoint
  2173. * Tue May 19 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1.4-1
  2174. - Update to 0.1.4
  2175. - Fix loading requests and tickets from git (allows syncing projects between
  2176. pagure instances)
  2177. - Add to the template .wsgi file a way to re-locate the tmp folder to work
  2178. around a bug in libgit2
  2179. - Fix unit-tests suite
  2180. - Adjust the spec file to install all the files required for the milters
  2181. - Fix the `View` button on the pull-request pages
  2182. * Wed May 13 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1.3-1
  2183. - Update to 0.1.3
  2184. - Add support for gitolite3
  2185. - Fix unit-tests suite to work on jenkins
  2186. * Sat May 09 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1.2-2
  2187. - Fix the Requires on the milter subpackage (adding: post, preun and postun)
  2188. - Add systemd scriptlet to restart the service gracefully
  2189. - Use versioned python macro (py2)
  2190. - Ship the license in the milter subpackage as well
  2191. - Use the %%license macro
  2192. * Thu May 07 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1.2-1
  2193. - Update to 0.1.2
  2194. - Fix bug in the fedmsg hook file (Thanks Zbigniew Jędrzejewski-Szmek)
  2195. * Wed May 06 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1.1-1
  2196. - Update to 0.1.1
  2197. - Port to python-munch and list it in the dependencies
  2198. - Fix exporting patch when they contain unicode characters or accent
  2199. - After creating an issue, user is brought back to the new issue page
  2200. - Fix unit-tests
  2201. - Stop the pagure hook if the user is deleting a branch (no need to run through
  2202. all the commits of that branch)
  2203. - Fix the requirements.txt file (Sayan Chowdhury)
  2204. - Fix the tree page to show the commit sha on its proper line (Sayan Chowdhury)
  2205. - Fix typo in the form of some of the plugin (Sayan Chowdhury)
  2206. - Improve the README (Sayan Chowdhury)
  2207. - Fix highlighting the commits tab when accessing it (Sayan Chowdhury)
  2208. * Mon May 04 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1-1
  2209. - First official release: 0.1
  2210. * Thu Apr 02 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.0-1.20150402
  2211. - Cut a RPM for testing on Thu Apr 2nd 2015
  2212. * Wed Oct 08 2014 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.0-1.20141008
  2213. - Initial packaging work for Fedora