From 447dc6d5fca47e72796c059337eff82021149954 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Jul 04 2016 14:23:06 +0000 Subject: Release 2.2.2 --- diff --git a/doc/contributors.rst b/doc/contributors.rst index e9ea761..155ed71 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 1, 2016 (release 2.2.1), the list looks as follow: +On July 4, 2016 (release 2.2.2), the list looks as follow: ================= =========== Number of commits Contributor ================= =========== - 4003 Pierre-Yves Chibon + 4005 Pierre-Yves Chibon 170 Ryan Lerch 61 farhaanbukhsh 59 Johan Cwiklinski diff --git a/files/pagure.spec b/files/pagure.spec index 772dd7e..4dcb445 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.2.1 +Version: 2.2.2 Release: 1%{?dist} Summary: A git-centered forge @@ -254,6 +254,12 @@ install -m 644 webhook-server/pagure_webhook.service \ %changelog +* Mon Jul 04 2016 Pierre-Yves Chibon - 2.2.2-1 +- Update to 2.2.2 +- Security fix release blocking all html related mimetype when displaying the + raw files and forces the browser to download them instead (Thanks to Patrick + Uiterwijk for finding this issue) + * Wed Jun 01 2016 Pierre-Yves Chibon - 2.2.1-1 - Update to 2.2.1 - Fix showing the inital comment on PR having only one commit (Ryan Lerch) diff --git a/pagure/__init__.py b/pagure/__init__.py index c7c73db..79e4d7c 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.2.1' +__version__ = '2.2.2' __api_version__ = '0.6'