Koji 1.33.1 release notes

Related: https://pagure.io/koji/issue/3869
This commit is contained in:
Tomas Kopecek 2023-07-11 16:01:14 +02:00
parent 3c2d7873d6
commit 616f191040
4 changed files with 85 additions and 2 deletions

View file

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

View file

@ -0,0 +1,73 @@
Koji 1.33.1 Release notes
=========================
All changes can be found in `the roadmap <https://pagure.io/koji/roadmap/1.33.1/>`_.
Most important changes are listed here.
Migrating from Koji 1.33
------------------------
No special actions are needed.
Security Fixes
--------------
None
Client Changes
--------------
**Streamline python/json options in call command**
| PR: https://pagure.io/koji/pull-request/3846
Better JSON/python support in CLI ``call`` command.
System Changes
--------------
**Wait with writing timestamps after results dir is created**
| PR: https://pagure.io/koji/pull-request/3834
In some cases using ``log_timestamps`` option on builder resulted in traceback
as results directory hasn't existed yet.
**Add support for sw_64 and loongarch64**
| PR: https://pagure.io/koji/pull-request/3836
Support for these architectures in ``distrepo``.
WWW
---
**Fix duplicate build link on CG taskinfo page**
| PR: https://pagure.io/koji/pull-request/3857
As there is historically more places where CG can store build link in task, web
page could have displayed duplicit links.
VM
--
**Drop stray typing hint**
| PR: https://pagure.io/koji/pull-request/3864
Typo (py3 typing hint) which prevents python2 version of kojivmd from running.
Documentation
-------------
**Basic vim syntax highlighting for hub policy**
| PR: https://pagure.io/koji/pull-request/3839
Simple syntax highlighting file for koji policies. It makes mistakes a bit more
visible. Nevertheless, policy syntax doesn't have strict grammar, so don't rely
only on this.
**readTaggedRPMS/Builds API documentation**
| PR: https://pagure.io/koji/pull-request/3840

View file

@ -83,7 +83,7 @@
%define release %{baserelease}
%endif
Name: koji
Version: 1.33.0
Version: 1.33.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+
@ -648,6 +648,15 @@ rm -rf $RPM_BUILD_ROOT
%endif
%changelog
* Tue Jul 11 2023 Tomas Kopecek <tkopecek at redhat.com> - 1.33.1-1
- PR#3834: wait with writing timestamps after results dir is created
- PR#3836: add support for sw_64 and loongarch64
- PR#3839: basic vim syntax highlighting for hub policy
- PR#3840: doc: readTaggedRPMS/Builds API documentation
- PR#3846: cli: streamline python/json options in call command
- PR#3857: Fix duplicate build link on CG taskinfo page
- PR#3864: drop stray typing hint
* Tue May 16 2023 Tomas Kopecek <tkopecek at redhat.com> - 1.33.0-1
- PR#3775: Import koji archive types
- PR#3816: kiwi: remove tech-preview warning

View file

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