From 54920c68fcc1d365eece7e4e12023ee45e9ef620 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Jul 05 2019 12:57:26 +0000 Subject: Release 5.7 Signed-off-by: Pierre-Yves Chibon --- diff --git a/UPGRADING.rst b/UPGRADING.rst index d307485..ec0e36c 100644 --- a/UPGRADING.rst +++ b/UPGRADING.rst @@ -1,6 +1,12 @@ Upgrading Pagure ================ +From 5.6 to 5.7 +--------------- + +The 5.7 release does not contain any database schema changes nor changes in the +configuration keys. + From 5.5 to 5.6 --------------- diff --git a/doc/changelog.rst b/doc/changelog.rst index 4000574..5369c1a 100644 --- a/doc/changelog.rst +++ b/doc/changelog.rst @@ -3,6 +3,27 @@ Changelog This document records all notable changes to `Pagure `_. + +5.7 (2019-07-05) +------------------ + +- Many fixes to properly support for CSP headers (Many thanks to Julien Landa + Alustiza for his help with this) +- Fix the blame view +- Allow project-less API token to retrieve issues via the API +- Better integration work on our fork of highlightjs-line-numbers (Julian Landa + Alustiza) +- Document the git auth backend `pagure` (mrx@mailinator.com) +- Catch ImportError before trying to catch any fedora_messaging exceptions +- pagure markdown extension: encapsulate our markdowns on a div tag (Julen Landa + Alustiza) +- Add styling for markdown tables (Julen Landa Alustiza) +- Always notify the person who opened the ticket/PR or are assigned to it +- Add a create-branch action to pagure-admin +- Bump jquery to latest version, fixing some CSP errors (Julen Landa Alustiza) +- Fix file view anchor link highlight & scrolling (Julen Landa Alustiza) +- Focus the comment textarea after hitting the reply button (Julen Landa Alustiza) + 5.6 (2019-06-04) ---------------- diff --git a/doc/contributors.rst b/doc/contributors.rst index fbb57c7..706dcd1 100644 --- a/doc/contributors.rst +++ b/doc/contributors.rst @@ -3,12 +3,12 @@ Contributors to pagure Pagure would be nothing without its contributors. -On June 4, 2019 (release 5.6) the list looks as follow: +On July 5, 2019 (release 5.7) the list looks as follow: ================= =========== Number of commits Contributor ================= =========== - 6596 Pierre-Yves Chibon + 6613 Pierre-Yves Chibon 328 Ryan Lerch 172 Vivek Anand 139 farhaanbukhsh @@ -24,6 +24,7 @@ Number of commits Contributor 32 Matt Prahl 32 Pradeep CE (cep) 25 Lubomír Sedlář + 24 Julen Landa Alustiza 24 Neal Gompa 23 rahul Bajaj 20 Jeremy Cline @@ -47,7 +48,6 @@ Number of commits Contributor 9 mprahl 8 Lei Yang 8 Paul W. Frields - 7 Julen Landa Alustiza 7 René Genz 6 Michael Scherer 6 ymdatta @@ -100,6 +100,7 @@ Number of commits Contributor 2 Simo Sorce 2 Stasiek Michalski 2 Tim Flink + 2 Tim Landscheidt 2 Todd Zullinger 2 William Moreno Reyes 2 bruno @@ -149,7 +150,6 @@ Number of commits Contributor 1 Stephen Gallagher 1 Tiago M. Vieira 1 Till Hofmann - 1 Tim Landscheidt 1 Vadim Rutkovsky 1 Vyacheslav Anzhiganov 1 Yves Martin @@ -164,6 +164,7 @@ Number of commits Contributor 1 ishcherb 1 jcvicelli 1 josef radinger + 1 mrx@mailinator.com 1 pingou 1 prasad0896 1 rishika7000 diff --git a/files/pagure.spec b/files/pagure.spec index 0061c8c..2f27edc 100644 --- a/files/pagure.spec +++ b/files/pagure.spec @@ -16,7 +16,7 @@ Name: pagure -Version: 5.6 +Version: 5.7 Release: 1%{?dist} Summary: A git-centered forge @@ -491,6 +491,9 @@ done %changelog +* Fri Jul 05 2019 Pierre-Yves Chibon - 5.7-1 +- Update to pagure 5.7 + * Tue Jun 04 2019 Pierre-Yves Chibon - 5.6-1 - Update to pagure 5.6 diff --git a/pagure/__init__.py b/pagure/__init__.py index c9176f3..19ebfe8 100644 --- a/pagure/__init__.py +++ b/pagure/__init__.py @@ -11,5 +11,5 @@ from __future__ import unicode_literals, absolute_import -__version__ = "5.6" -__api_version__ = "0.28" +__version__ = "5.7" +__api_version__ = "0.29"