From cf7d3a1d528ac3fb2b12448a5c3f4d008b590577 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Aug 08 2017 15:07:19 +0000 Subject: Release 3.5 Signed-off-by: Pierre-Yves Chibon --- diff --git a/doc/contributors.rst b/doc/contributors.rst index b528711..315d6b6 100644 --- a/doc/contributors.rst +++ b/doc/contributors.rst @@ -3,14 +3,14 @@ Contributors to pagure Pagure would be nothing without its contributors. -On July 31, 2017 (release 3.4), the list looks as follow: +On August 08, 2017 (release 3.5), the list looks as follow: ================= =========== Number of commits Contributor ================= =========== - 5350 Pierre-Yves Chibon + 5361 Pierre-Yves Chibon 191 Ryan Lerch - 144 Vivek Anand + 145 Vivek Anand 139 farhaanbukhsh 126 Patrick Uiterwijk 77 Farhaan Bukhsh @@ -55,6 +55,7 @@ Number of commits Contributor 3 Till Maas 3 bill auger 3 cep + 3 shivani 3 skrzepto 3 tenstormavi 2 Carlos Mogas da Silva @@ -69,21 +70,23 @@ Number of commits Contributor 2 bruno 2 clime 2 dhrish20 - 2 shivani 2 “AnjaliPardeshi” <“anjalipardeshi92@gmail.com”> 1 Aleksandra Fedorova (bookwar) 1 Amol Kahat 1 Anthony Lackey 1 Arti Laddha 1 Brian (bex) Exelbierd + 1 Carl George 1 Charelle Collett 1 David Caro 1 Eashan 1 Haikel Guemar + 1 Hazel Smith 1 Igor Gnatenko 1 Kunaal Jain 1 Mathew Robinson 1 Ompragash + 1 Patrick Uiterwijk 1 Pierre-YvesChibon 1 Robert Bost 1 Snehal Karale diff --git a/files/pagure.spec b/files/pagure.spec index 8b0849c..ed23424 100644 --- a/files/pagure.spec +++ b/files/pagure.spec @@ -2,7 +2,7 @@ %distutils.sysconfig import get_python_lib; print (get_python_lib())")} Name: pagure -Version: 3.4 +Version: 3.5 Release: 1%{?dist} Summary: A git-centered forge @@ -384,10 +384,30 @@ install -m 644 pagure-loadjson/pagure_loadjson.service \ %changelog +* Tue Aug 08 2017 Pierre-Yves Chibon - 3.5-1 +- Update to 3.5 +- Fix login when groups are managed outside +- Fix the ordering of the issues by priority using JS and its documentation +- Indicate the issue/PR status in the title of its link +- Correct typo in waiting page template: 'You task' -> 'Your task' (Hazel Smith) +- Fix redirect in search (Carl George) +- Fix removing users of a project +- Allow customizing the HTML title globally +- Drop the new line character and the '# end of body' message when loading the + config +- Scroll to the comment section on clicking reply. (shivani) +- only show issues on the My Issue page if the issue tracker is on for the + project (Vivek Anand) +- Update the refresh-gitolite action of pagure-admin for the new interface + (turns out this wasn't in fact merged in 3.4) +- Add a configuration key to make pagure case sensitive +- Add an USER_ACLS configuration key +- Document the different API token ACLs configuration keys +- Fix syncing groups from external account sources (Patrick Uiterwijk) + * Mon Jul 31 2017 Pierre-Yves Chibon - 3.4-1 - Update to 3.4 - Fix layout breakage in the doc -- Update the refresh-gitolite action of pagure-admin for the new interface - Stop using readlines() to drop the trailing new line character - Fix logging by properly formatting the message - Fix the issue count in the My Issues page (Vivek Anand) diff --git a/pagure/__init__.py b/pagure/__init__.py index 09904e0..431b719 100644 --- a/pagure/__init__.py +++ b/pagure/__init__.py @@ -12,7 +12,7 @@ __requires__ = ['SQLAlchemy >= 0.8', 'jinja2 >= 2.4'] import pkg_resources # noqa: E402,F401 -__version__ = '3.4' +__version__ = '3.5' __api_version__ = '0.15' diff --git a/pagure/default_config.py b/pagure/default_config.py index 138e230..c9522a2 100644 --- a/pagure/default_config.py +++ b/pagure/default_config.py @@ -264,7 +264,7 @@ ACLS = { 'modify_project': 'Modify an existing project' } -# List of ACLs which a regular user is allowed to associate to an API token +# List of ACLs which a regular user is allowed to associate to an API token # from the ACLs above USER_ACLS = ACLS.keys()