From f8b1814bd0b37f7600e5304fdb30c29f6a45e7d9 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Oct 21 2016 12:26:25 +0000 Subject: Release 2.8 --- diff --git a/UPGRADING.rst b/UPGRADING.rst index ede288f..3d294f4 100644 --- a/UPGRADING.rst +++ b/UPGRADING.rst @@ -1,6 +1,17 @@ Upgrading Pagure ================ + +From 2.7 to 2.8 +--------------- + +2.8 brings a little change to the database scheme. + +Therefore when upgrading to from 2.7 to 2.8, you will have to: + +* Update the database schame using alembic: ``alembic upgrade head`` + + From 2.6 to 2.7 --------------- diff --git a/doc/contributors.rst b/doc/contributors.rst index 49640a4..b405ee0 100644 --- a/doc/contributors.rst +++ b/doc/contributors.rst @@ -3,13 +3,13 @@ Contributors to pagure Pagure would be nothing without its contributors. -On Oct 13, 2016 (release 2.7.2), the list looks as follow: +On Oct 21, 2016 (release 2.8), the list looks as follow: ================= =========== Number of commits Contributor ================= =========== - 4494 Pierre-Yves Chibon - 186 Ryan Lerch + 4533 Pierre-Yves Chibon + 189 Ryan Lerch 89 farhaanbukhsh 59 Johan Cwiklinski 52 Vivek Anand @@ -22,8 +22,8 @@ Number of commits Contributor 15 Ralph Bean 13 Ghost-script 13 Mathieu Bridon + 11 Jeremy Cline 8 Lei Yang - 7 Jeremy Cline 5 Mike McLean 5 Oliver Gutierrez 5 Paul W. Frields @@ -39,9 +39,12 @@ Number of commits Contributor 3 Kushal Khandelwal 3 Pedro Lima 3 Sergio Durigan Junior + 3 bill auger 3 skrzepto + 3 tenstormavi 2 Daniel Mach 2 Nuno Maltez + 2 Rahul Bajaj 2 Richard Marko 2 Ricky Elrod 2 Simo Sorce @@ -49,7 +52,6 @@ Number of commits Contributor 2 William Moreno Reyes 2 bruno 2 dhrish20 - 2 tenstormavi 2 “AnjaliPardeshi” <“anjalipardeshi92@gmail.com”> 1 Aleksandra Fedorova (bookwar) 1 Anthony Lackey @@ -59,7 +61,6 @@ Number of commits Contributor 1 Kunaal Jain 1 Mathew Robinson 1 Pierre-YvesChibon - 1 Rahul Bajaj 1 Stanislav Ochotnicky 1 Tiago M. Vieira 1 Vyacheslav Anzhiganov diff --git a/files/pagure.spec b/files/pagure.spec index 900ddd2..bb410e0 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.7.2 +Version: 2.8 Release: 1%{?dist} Summary: A git-centered forge @@ -298,6 +298,40 @@ install -m 644 pagure-ci/pagure_ci.service \ %changelog +* Fri Oct 21 2016 Pierre-Yves Chibon - 2.8-1 +- Update to 2.8 +- Fix the migration adding the close_status field to remove the old status + only at the end +- Fix the RTD and Force push hooks for the change in location of the plugins +- Fix creating new PR from the page listing the pull-requests +- Add the possibility for the user to edit their settings in their settings page +- Include the close_status in the JSON representation of an issue +- Load the close_status if there is one set in the JSON repsentation given +- Fix running the tests when EVENTSOURCE_SOURCE is defined in the + configuration. +- Make the search case-insensitive when searching issues +- Fix the "cancel" button when editing a "regular" comment on a pull-request +- Remove the ``Content-Encoding`` headers from responses (Jeremy Cline) +- Fix creating the release folder for project with a namespace +- When sending email, make the user who made the action be in the From field +- When searching groups, search both their name and display name +- Create a Vagrantfile and Ansible role for Pagure development (Jeremy Cline) +- Made searching issue stop clearing status and tags filters (Ryan Lerch) +- Improve documentation (Bill Auger) +- Fix finding out the encoding of a file in git (Jeremy Cline) +- Fix making cross-project references using # +- Allow filter the list of commits for a certain user +- Ensure we disable all the submit button when clicking on one (avoid sending + two comments) +- Do not always compute the list of diff commits +- Let's not assume PAGURE_CI_SERVICES is always there +- Allow html table to define their CSS class +- Add a link to the user on the commit list (Ryan Lerch) +- Change `Fork` button to `View Fork` on all pages of the project (tenstormavi) +- Enable some of the markdown extensions by default +- Fix mixed content blocked in the doc by not sending our user to google (Rahul + Bajaj) + * Thu Oct 13 2016 Pierre-Yves Chibon - 2.7.2-1 - Update to 2.7.2 - Do not show the custom field if the project has none diff --git a/pagure/__init__.py b/pagure/__init__.py index 8badd64..fcc74a8 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.7.2' +__version__ = '2.8' __api_version__ = '0.8'