From f39cd74075572c2906c5029f9e0ffeaec8d143ce Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Dec 12 2018 15:02:20 +0000 Subject: Add the documentation for the 5.1.4 release See commit: 205e6789fee12b9e152bdf989de3b85b8258d398 Signed-off-by: Pierre-Yves Chibon --- diff --git a/UPGRADING.rst b/UPGRADING.rst index 2f47b46..3708a3c 100644 --- a/UPGRADING.rst +++ b/UPGRADING.rst @@ -1,6 +1,35 @@ Upgrading Pagure ================ +From 5.1 to 5.1.4 +----------------- + +In the development of 5.1.4 it was found out that the alembic migration +``ba538b2648b7`` that creates the ``hook_mirror`` table. +If you create that table via alembic, you will likely want to re-run it. Beware +that applying the following commands will destroy any data you have in this +table. + +* Mark the database to this migration:: + + alembic stamp ba538b2648b7 + +* Remove the ``hook_mirror`` table so it can be re-generated:: + + alembic downgrade -1 + +* Re-run that single migration:: + + alembic upgrade +1 + +* Marking the database to the last current migration (as of 5.1.4):: + + alembic stamp f16ab75e4d32 + +Again, any project that tried to setup the mirroring feature in pagure will need +to be reconfigured. + + From 5.x to 5.1 --------------- diff --git a/doc/changelog.rst b/doc/changelog.rst index 2cd547c..b0a846d 100644 --- a/doc/changelog.rst +++ b/doc/changelog.rst @@ -3,6 +3,16 @@ Changelog This document records all notable changes to `Pagure `_. +5.1.4 (2018-10-15) +------------------ + +- Fix the alembic migration creating the hook_mirror table +- Close the DB session in one place for all hooks +- Add more logging to the pagure_logcom service +- Configure SMTP info for git_multimail (Patrick Uiterwijk) +- Use the PR UID previously read from environment (Patrick Uiterwijk) + + 5.1.3 (2018-10-11) ------------------