Koji 1.30.1 release notes

Related: https://pagure.io/koji/issue/3522
This commit is contained in:
Tomas Kopecek 2022-10-03 14:35:19 +02:00
parent 1cc61ddae6
commit 14c7dea3e0
4 changed files with 117 additions and 2 deletions

View file

@ -5,6 +5,7 @@ Release Notes
.. toctree::
:maxdepth: 1
release_notes_1.30.1
release_notes_1.30
release_notes_1.29.1
release_notes_1.29

View file

@ -0,0 +1,102 @@
Koji 1.30.1 Release notes
=========================
All changes can be found in `the roadmap <https://pagure.io/koji/roadmap/1.30.1/>`_.
Most important changes are listed here.
Migrating from Koji 1.30
------------------------
No special actions are needed.
Security Fixes
--------------
None
Hub Changes
-----------
**Use nextval function instead of query 'SELECT nextval'**
| PR: https://pagure.io/koji/pull-request/3484
Incremental step to remove raw SQL queries.
**Return data when query execute asList with transform**
| PR: https://pagure.io/koji/pull-request/3513
Bug removal in part of code which was not used yet.
Client Changes
--------------
**Allow redirects for file size checking**
| PR: https://pagure.io/koji/pull-request/3464
Commands downloading files from the server were not properly checking file size
when trying to append partially downloaded files.
**Download all files, skip downloaded files**
| PR: https://pagure.io/koji/pull-request/3502
Regression fix for 1.30 to have backward-compatible behaviour with
``download-task``.
Builder Changes
---------------
**Various simple updates to windows content builder**
| PR: https://pagure.io/koji/pull-request/3503
| PR: https://pagure.io/koji/pull-request/3504
| PR: https://pagure.io/koji/pull-request/3505
| PR: https://pagure.io/koji/pull-request/3507
Plugins
-------
**kiwi: Handle include protocols**
| PR: https://pagure.io/koji/pull-request/3496
Forbid other include protocols than ``this://`` to prevent directory traversal.
**kiwi: Explicitly use koji-generated description**
| PR: https://pagure.io/koji/pull-request/3498
Koji now requires user to explicitely select descriptions file instead of
leaving it up to kiwi to select the right one.
Web Changes
-----------
**More generic taskinfo parameter handling**
| PR: https://pagure.io/koji/pull-request/3455
Internal change to use standardized parameter handling on ``taskinfo`` page.
This also replace "Parameters are not correct for this method." with data
display.
**Fix dist-repo repo.json url**
| PR: https://pagure.io/koji/pull-request/3469
``repoinfo`` page display correct link to distrepos.
**Fix arch filter in list of hosts webUI**
| PR: https://pagure.io/koji/pull-request/3492
Filtering via arch sometimes returned additional records.
Documentation/DevTools Changes
------------------------------
* `Fix flake8 errors <https://pagure.io/koji/pull-request/3479>`_
* `Fix URLs to pull requests <https://pagure.io/koji/pull-request/3481>`_
* `Block py3 compilation in py2 env <https://pagure.io/koji/pull-request/3486>`_
* `Explain waitrepo tasks in vm channel <https://pagure.io/koji/pull-request/3506>`_
* `Fix missing characters in config example <https://pagure.io/koji/pull-request/3518>`_

View file

@ -83,7 +83,7 @@
%define release %{baserelease}
%endif
Name: koji
Version: 1.30.0
Version: 1.30.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+
@ -649,6 +649,18 @@ rm -rf $RPM_BUILD_ROOT
%endif
%changelog
* Mon Oct 3 2022 Tomas Kopecek <tkopecek at redhat.com> - 1.30.1-1
- PR#3464: cli: allow redirects for file size checking
- PR#3469: Fix dist-repo repo.json url
- PR#3479: fix flake8 errors
- PR#3484: Use nextval function instead of query 'SELECT nextval'
- PR#3486: packaging: Block py3 compilation in py2 env
- PR#3492: Fix arch filter in list of hosts webUI
- PR#3496: kiwi: handle include protocols
- PR#3498: kiwi: Explicitly use koji-generated description
- PR#3502: Download all files, skip downloaded files
- PR#3518: doc: fix missing characters
* Thu Aug 18 2022 Tomas Kopecek <tkopecek at redhat.com> - 1.30.0-1
- PR#3308: server-side clonetag
- PR#3352: CLI: Remove --paths option from list-buildroot

View file

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