From 1cb2c347471329503fbd84e081d8a5e27f6d1009 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Feb 21 2017 12:22:55 +0000 Subject: Release 2.13 --- diff --git a/UPGRADING.rst b/UPGRADING.rst index 36bd965..3ede70e 100644 --- a/UPGRADING.rst +++ b/UPGRADING.rst @@ -1,8 +1,17 @@ Upgrading Pagure ================ +From 2.12 to 2.13 +---------------- + +The 2.13 release brings some adjustments to the database scheme. + +* Update the database schame using alembic: ``alembic upgrade head`` + + From 2.11 to 2.12 ---------------- + From this release on, we will have alembic migration script for new table creation, so there will no longer be a need to use ``createdb.py`` @@ -13,6 +22,7 @@ The 2.12 release brings some adjustments to the database scheme. From 2.10 to 2.11 ---------------- + The 2.10 releases brings some adjustments to the database scheme. * Create the new DB tables and the new status field using the ``createdb.py`` diff --git a/doc/contributors.rst b/doc/contributors.rst index 76ca28e..97a5355 100644 --- a/doc/contributors.rst +++ b/doc/contributors.rst @@ -3,19 +3,19 @@ Contributors to pagure Pagure would be nothing without its contributors. -On Feb 13, 2016 (release 2.12.1), the list looks as follow: +On Feb 21, 2016 (release 2.13), the list looks as follow: ================= =========== Number of commits Contributor ================= =========== - 4920 Pierre-Yves Chibon + 4979 Pierre-Yves Chibon 191 Ryan Lerch + 116 Vivek Anand 89 farhaanbukhsh - 72 Vivek Anand 60 Clement Verna 59 Johan Cwiklinski - 42 Mark Reynolds - 36 Patrick Uiterwijk + 45 Mark Reynolds + 39 Patrick Uiterwijk 33 Farhaan Bukhsh 30 Lubomír Sedlář 27 Pradeep CE (cep) @@ -65,6 +65,7 @@ Number of commits Contributor 1 Aleksandra Fedorova (bookwar) 1 Amol Kahat 1 Anthony Lackey + 1 Arti Laddha 1 Brian (bex) Exelbierd 1 David Caro 1 Haikel Guemar @@ -83,7 +84,9 @@ Number of commits Contributor 1 d3prof3t 1 jcvicelli 1 pingou + 1 rishika7000 1 ryanlerch + 1 shivani 1 skrzepto 1 vibhcool ================= =========== diff --git a/files/pagure.spec b/files/pagure.spec index 2fd39b5..eb367e1 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: 2.12.1 +Version: 2.13 Release: 1%{?dist} Summary: A git-centered forge @@ -371,6 +371,24 @@ install -m 644 pagure-loadjson/pagure_loadjson.service \ %changelog +* Tue Feb 21 2017 Pierre-Yves Chibon - 2.13-1 +- Update to 2.13 +- Allow filtering issues for certain custom keys using : in the + search input (Patric Uiterwijk) +- Make loading the JSON blob into the database its own async service +- Add ACLs to pagure (Vivek Anand) +- Fix running the tests against postgresql +- Let the doc server return the content as is when it fails to decode it +- Fix rendering a issue when one of the custom fields has not been properly + setup (ie a custom field of type list, with no options set-up but still having + a value for that ticket) +- Fix auto-completion when adding a tag to a ticket +- Add the possibility to filter the issues with no milestone assigned (Mark + Reynolds) +- Fix the callback URL for jenkins for pagure-ci +- Backport the equalto test to ensure it works on old jinja2 version (fixes + accessing the user's PR page) + * Mon Feb 13 2017 Pierre-Yves Chibon - 2.12.1-1 - Update to 2.12.1 - Include the build id in the flag set by pagure-ci on PR (Farhaan Bukhsh) diff --git a/pagure/__init__.py b/pagure/__init__.py index 98277e5..1ed7473 100644 --- a/pagure/__init__.py +++ b/pagure/__init__.py @@ -12,7 +12,7 @@ __requires__ = ['SQLAlchemy >= 0.8', 'jinja2 >= 2.4'] import pkg_resources -__version__ = '2.12.1' +__version__ = '2.13' __api_version__ = '0.11'