Browse Source

Release 5.7

Signed-off-by: Pierre-Yves Chibon <pingou@pingoured.fr>
Pierre-Yves Chibon 4 years ago
parent
commit
54920c68fc
5 changed files with 38 additions and 7 deletions
  1. 6 0
      UPGRADING.rst
  2. 21 0
      doc/changelog.rst
  3. 5 4
      doc/contributors.rst
  4. 4 1
      files/pagure.spec
  5. 2 2
      pagure/__init__.py

+ 6 - 0
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
 ---------------

+ 21 - 0
doc/changelog.rst

@@ -3,6 +3,27 @@ Changelog
 
 This document records all notable changes to `Pagure <https://pagure.io>`_.
 
+
+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)
 ----------------
 

+ 5 - 4
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 <pingou@pingoured.fr>
+  6613              Pierre-Yves Chibon <pingou@pingoured.fr>
    328              Ryan Lerch <rlerch@redhat.com>
    172              Vivek Anand <vivekanand1101@gmail.com>
    139              farhaanbukhsh <farhaan.bukhsh@gmail.com>
@@ -24,6 +24,7 @@ Number of commits  Contributor
     32              Matt Prahl <mprahl@redhat.com>
     32              Pradeep CE (cep) <breathingcode@gmail.com>
     25              Lubomír Sedlář <lubomir.sedlar@gmail.com>
+    24              Julen Landa Alustiza <jlanda@fedoraproject.org>
     24              Neal Gompa <ngompa13@gmail.com>
     23              rahul Bajaj <you@example.com>
     20              Jeremy Cline <jeremy@jcline.org>
@@ -47,7 +48,6 @@ Number of commits  Contributor
      9              mprahl <mprahl@redhat.com>
      8              Lei Yang <yltt1234512@gmail.com>
      8              Paul W. Frields <stickster@gmail.com>
-     7              Julen Landa Alustiza <jlanda@fedoraproject.org>
      7              René Genz <liebundartig@freenet.de>
      6              Michael Scherer <misc@redhat.com>
      6              ymdatta <ymdatta@protonmail.com>
@@ -100,6 +100,7 @@ Number of commits  Contributor
      2              Simo Sorce <simo@redhat.com>
      2              Stasiek Michalski <hellcp@opensuse.org>
      2              Tim Flink <tflink@fedoraproject.org>
+     2              Tim Landscheidt <tim@tim-landscheidt.de>
      2              Todd Zullinger <tmz@pobox.com>
      2              William Moreno Reyes <williamjmorenor@gmail.com>
      2              bruno <bruno@wolff.to>
@@ -149,7 +150,6 @@ Number of commits  Contributor
      1              Stephen Gallagher <sgallagh@redhat.com>
      1              Tiago M. Vieira <tiago@tvieira.com>
      1              Till Hofmann <hofmann@kbsg.rwth-aachen.de>
-     1              Tim Landscheidt <tim@tim-landscheidt.de>
      1              Vadim Rutkovsky <vrutkovs@redhat.com>
      1              Vyacheslav Anzhiganov <vanzhiganov@ya.ru>
      1              Yves Martin <ymartin1040@gmail.com>
@@ -164,6 +164,7 @@ Number of commits  Contributor
      1              ishcherb <ishcherb@redhat.com>
      1              jcvicelli <jcvicelli@gmail.com>
      1              josef radinger <cheese@nosuchhost.net>
+     1              mrx@mailinator.com <mrx@mailinator.com>
      1              pingou <pingou@fedoraproject.org>
      1              prasad0896 <shendep@yahoo.co.in>
      1              rishika7000 <rishika7000@gmail.com>

+ 4 - 1
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 <pingou@pingoured.fr> - 5.7-1
+- Update to pagure 5.7
+
 * Tue Jun 04 2019 Pierre-Yves Chibon <pingou@pingoured.fr> - 5.6-1
 - Update to pagure 5.6
 

+ 2 - 2
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"