From ab39e95ed4dc8367e5e146e6d9a9fa6925b75618 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Jun 04 2019 08:51:08 +0000 Subject: Release 5.6 Signed-off-by: Pierre-Yves Chibon --- diff --git a/UPGRADING.rst b/UPGRADING.rst index 146fd6f..d307485 100644 --- a/UPGRADING.rst +++ b/UPGRADING.rst @@ -2,6 +2,20 @@ Upgrading Pagure ================ +From 5.5 to 5.6 +--------------- + +The 5.6 release contains a database schema updates, so: + +* Update the data schema using alembic: ``alembic upgrade head`` + +(As usual, do your backups before). + +New configuration key added: + +* CSP_HEADERS + + From 5.4 to 5.5 --------------- diff --git a/doc/changelog.rst b/doc/changelog.rst index 3dbcc40..4000574 100644 --- a/doc/changelog.rst +++ b/doc/changelog.rst @@ -3,6 +3,40 @@ Changelog This document records all notable changes to `Pagure `_. +5.6 (2019-06-04) +---------------- + +.. warning:: This release contains a security fix for CVE-2019-11556 + +- Couple of fixes for the mirroring-in feature +- Fix linking to issues or PRs when pre-viewing a comment +- Include a search icon near the filter button on the issues list +- Include a small introduction text to email on loading files +- Move the side-bar of the repo_master into its own template for easier + overriding by other themes +- Enforce black on all pagure, including tests, docs and all +- Add an option to pagure-admin to delete a project +- Add an option to pagure-admin block-user to list the users blocked +- Ensure "No activity" rows get removed on subsequent updates of the calendar + heatmap (Frank Dana) +- Send a notification upon editing the initial comment of a PR +- Send notifications on tag creation and tag and branch deletion +- Comment reply button: remove icon title (Frank Dana) +- Fix updating project options when running pagure in python 2 +- Fix the test button for webhook notifications +- Fix opening PR on forks on the page listing the PRs +- Add repo_from argument for API create pull request (Lenka Segura) +- Drop commit_flags_uid_key from commit_flags +- Add missing namespace in the link to edit inline comments in PR +- Add support for allowing the maintainers of the target project rebase +- Do not allow rebase via the API if the PR does not allow it +- Improve the install documentation (MR) +- Add CSP headers support and a mechanism to customize them +- Fix triggering a CI run on remote pull-requests +- Add a button to take maintenance of orphaned packages in dist-git +- Fix giving a project to someone who already had it +- Ensure the blame view does not render html + 5.5 (2019-04-08) ---------------- - themes/srcfpo: move icons to the theme instead of linking them from other apps diff --git a/doc/contributors.rst b/doc/contributors.rst index ec06c8c..fbb57c7 100644 --- a/doc/contributors.rst +++ b/doc/contributors.rst @@ -3,12 +3,12 @@ Contributors to pagure Pagure would be nothing without its contributors. -On February 22, 2019 (release 5.3) the list looks as follow: +On June 4, 2019 (release 5.6) the list looks as follow: ================= =========== Number of commits Contributor ================= =========== - 6557 Pierre-Yves Chibon + 6596 Pierre-Yves Chibon 328 Ryan Lerch 172 Vivek Anand 139 farhaanbukhsh @@ -30,9 +30,9 @@ Number of commits Contributor 19 Aurélien Bompard 19 Gaurav Kumar 18 Abhijeet Kasurde + 18 Lenka Segura 18 Sayan Chowdhury 17 Adam Williamson - 17 Lenka Segura 17 Ralph Bean 16 Brian Stinson 15 Igor Gnatenko @@ -90,6 +90,7 @@ Number of commits Contributor 2 Hervé Beraud 2 Kamil Páral 2 Luis Guzman + 2 MR 2 Neha Kandpal 2 Nuno Maltez 2 Ompragash @@ -119,8 +120,10 @@ Number of commits Contributor 1 Charelle Collett 1 David Caro 1 Eashan + 1 FeRD (Frank Dana) 1 Felix Yan 1 Filip Valder + 1 Frank Dana (FeRD) 1 Haikel Guemar 1 Hazel Smith 1 Jeremy Cline @@ -132,6 +135,7 @@ Number of commits Contributor 1 Mathew Robinson 1 Miro Hrončok 1 Mohan Boddu + 1 Pavel Raiskup 1 Peter Kolínek 1 Petr Šplíchal 1 Randy Barlow diff --git a/files/pagure.spec b/files/pagure.spec index 1a6e275..0061c8c 100644 --- a/files/pagure.spec +++ b/files/pagure.spec @@ -16,7 +16,7 @@ Name: pagure -Version: 5.5 +Version: 5.6 Release: 1%{?dist} Summary: A git-centered forge @@ -491,6 +491,9 @@ done %changelog +* Tue Jun 04 2019 Pierre-Yves Chibon - 5.6-1 +- Update to pagure 5.6 + * Mon Apr 08 2019 Pierre-Yves Chibon - 5.5-1 - Update to pagure 5.5 diff --git a/pagure/__init__.py b/pagure/__init__.py index 8ce00c4..c9176f3 100644 --- a/pagure/__init__.py +++ b/pagure/__init__.py @@ -11,5 +11,5 @@ from __future__ import unicode_literals, absolute_import -__version__ = "5.5" +__version__ = "5.6" __api_version__ = "0.28"