From 3aa1fa2dae76846d9d28d5269032b0a079ad3ae4 Mon Sep 17 00:00:00 2001 From: Brendan Reilly Date: Fri, 8 Nov 2019 11:42:48 -0500 Subject: [PATCH] 1.19.1 release --- docs/source/conf.py | 2 +- docs/source/release_notes/release_notes.rst | 1 + .../release_notes/release_notes_1.19.1.rst | 33 +++++++++++++++++++ koji.spec | 9 +++-- setup.py | 2 +- 5 files changed, 43 insertions(+), 4 deletions(-) create mode 100644 docs/source/release_notes/release_notes_1.19.1.rst diff --git a/docs/source/conf.py b/docs/source/conf.py index 5a291a4c..2b8808fb 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -56,7 +56,7 @@ copyright = u'2017, Mike McLean, Mike B, Dennis Gilmore, Mathieu Bridon, Ian McL # The short X.Y version. version = '1.19' # The full version, including alpha/beta/rc tags. -release = '1.19.0' +release = '1.19.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/docs/source/release_notes/release_notes.rst b/docs/source/release_notes/release_notes.rst index dbb59ace..04dfba57 100644 --- a/docs/source/release_notes/release_notes.rst +++ b/docs/source/release_notes/release_notes.rst @@ -5,6 +5,7 @@ Release Notes .. toctree:: :maxdepth: 1 + release_notes_1.19.1 release_notes_1.19 release_notes_1.18.1 release_notes_1.18 diff --git a/docs/source/release_notes/release_notes_1.19.1.rst b/docs/source/release_notes/release_notes_1.19.1.rst new file mode 100644 index 00000000..4a30ec39 --- /dev/null +++ b/docs/source/release_notes/release_notes_1.19.1.rst @@ -0,0 +1,33 @@ +Koji 1.19.1 Release notes +========================= + +This is a small bugfix release for significant 1.19 bugs. + +Client Changes +-------------- + +**Fix permissions to check tag/target/host permissions** + +| PR: https://pagure.io/koji/pull-request/1733 + +In previous release the tag/target/host permissions were not being properly checked +by the client, this change includes those checks. + + + +System Changes +-------------- + +**Fix hub reporting of incorrect ownership data** + +| PR: https://pagure.io/koji/pull-request/1753 + +This change fixes package owner listing; in previous release, information returned by ``list-pkgs`` +was incorrect. + + +**Fix issue with listing users with old versions of Postgres** + +| PR: https://pagure.io/koji/pull-request/1751 + +``array_remove`` was removed and replaced to support Postgres versions older than 9.4. diff --git a/koji.spec b/koji.spec index 659e886b..af6ae700 100644 --- a/koji.spec +++ b/koji.spec @@ -81,7 +81,7 @@ %define release %{baserelease} %endif Name: koji -Version: 1.19.0 +Version: 1.19.1 Release: %{release}%{?dist} License: LGPLv2 and GPLv2+ # the included arch lib from yum's rpmUtils is GPLv2+ @@ -727,8 +727,13 @@ fi %endif %changelog +* Fri Nov 8 2019 Brendan Reilly - 1.19.1-1 +- PR#1751: hub: Fix issue with listing users and old versions of Postgres +- PR#1753: Fix hub reporting of bogus ownership data +- PR#1733: allow tag or target permissions as appropriate (on master) + * Wed Oct 30 2019 Brendan Reilly - 1.19.0-1 -= PR#1720: backward-compatible db conversion +- PR#1720: backward-compatible db conversion - PR#1713: cli: fix typo in edit-user cmd - PR#1662: CGUninitBuild for cancelling CG reservations - PR#1681: add all used permissions to db diff --git a/setup.py b/setup.py index 21c789eb..bed2eac4 100644 --- a/setup.py +++ b/setup.py @@ -32,7 +32,7 @@ def get_install_requires(): setup( name="koji", - version="1.19.0", + version="1.19.1", description=("Koji is a system for building and tracking RPMS. The base" " package contains shared libraries and the command-line" " interface."),