Release notes 1.32.1

Related: https://pagure.io/koji/issue/3764
This commit is contained in:
Tomas Kopecek 2023-04-03 16:04:33 +02:00
parent 12e11e0606
commit b58527fa1d
4 changed files with 73 additions and 2 deletions

View file

@ -5,6 +5,7 @@ Release Notes
.. toctree::
:maxdepth: 1
release_notes_1.32.1
release_notes_1.32
release_notes_1.31.1
release_notes_1.31

View file

@ -0,0 +1,70 @@
Koji 1.32.1 Release notes
=========================
All changes can be found in `the roadmap <https://pagure.io/koji/roadmap/1.32.1/>`_.
Most important changes are listed here.
Migrating from Koji 1.32
------------------------
No special actions are needed.
Security Fixes
--------------
None
Client Changes
--------------
**list-untagged: One space of double space before references**
| PR: https://pagure.io/koji/pull-request/3731
Simple unification of output format.
**Delete double check existing source tag, --batch option is invisible**
| PR: https://pagure.io/koji/pull-request/3706
Option doesn't make sense for server-side clonetag anymore.
System Changes
--------------
**fix query for partially generated checksums**
| PR: https://pagure.io/koji/pull-request/3692
| PR: https://pagure.io/koji/pull-request/3694
Fix the query logic for new API ``getRPMChecksums``.
Plugins
-------
**ArgumentParser instead of ArgumentParser in sidetag CLI plugin**
| PR: https://pagure.io/koji/pull-request/3740
Unified with the other code we've. This was the only place using
``ArgumentParser`` instead of ``OptionParser``. It is step back, but better for
testing. When we finally drop py2 code, it will be reverted.
**Add missing argument in edit-sidetag help msg**
| PR: https://pagure.io/koji/pull-request/3718
Fixed help message.
Documentation
-------------
**Fix timezone in clone-tag test case**
| PR: https://pagure.io/koji/pull-request/3734
**Unify migration script Koji 1.31 -> 1.32**
| PR: https://pagure.io/koji/pull-request/3697
Migration scripts were split to two files. Merged to one.

View file

@ -83,7 +83,7 @@
%define release %{baserelease}
%endif
Name: koji
Version: 1.32.0
Version: 1.32.1
Release: %{release}%{?dist}
License: LGPL-2.1-only and GPL-2.0-or-later
# the included arch lib from yum's rpmUtils is GPLv2+

View file

@ -1,2 +1,2 @@
__version_info__ = (1, 32, 0)
__version_info__ = (1, 32, 1)
__version__ = '.'.join([str(x) for x in __version_info__])