From 634d30fac52495150f6c0d81f2b0825b7d1c9bb1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lubom=C3=ADr=20Sedl=C3=A1=C5=99?= Date: Thu, 11 Jun 2020 14:09:56 +0200 Subject: [PATCH] 4.2.3 release MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Lubomír Sedlář --- doc/conf.py | 2 +- pungi.spec | 31 ++++++++++++++++++++++++++++++- setup.py | 2 +- 3 files changed, 32 insertions(+), 3 deletions(-) diff --git a/doc/conf.py b/doc/conf.py index 3e8563cb..310b0bc5 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -53,7 +53,7 @@ copyright = u'2016, Red Hat, Inc.' # The short X.Y version. version = '4.2' # The full version, including alpha/beta/rc tags. -release = '4.2.2' +release = '4.2.3' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pungi.spec b/pungi.spec index 465609e5..0f58096c 100644 --- a/pungi.spec +++ b/pungi.spec @@ -1,5 +1,5 @@ Name: pungi -Version: 4.2.2 +Version: 4.2.3 Release: 1%{?dist} Summary: Distribution compose tool @@ -111,6 +111,35 @@ nosetests --exe cd tests && ./test_compose.sh %changelog +* Thu Jun 11 2020 Lubomír Sedlář - 4.2.3-1 +- Move test for unsigned packages with pkgset_koji_scratch_tasks to PkgsetPhase + class. (jkaluza) +- Allow building compose with scratch builds defined by + `pkgset_koji_scratch_tasks`. (jkaluza) +- createrepo: Allow making productid glob stricter (lsedlar) +- docs: Remove outdated note (lsedlar) +- createrepo: Add extra modulemd files to the repo (lsedlar) +- pkgset: handle exception when using dogpile cache (hlin) +- notification: Add compose_path into the messages (hlin) +- gather: handle mirrorlist in kickstart (frederic.pierret) +- Allow only creating unified ISO for specified arch (hlin) +- docs: update doc for gather_lookaside_repos option (hlin) +- Include the output of getisoimage in the error message (hlin) +- tests: Patch time in CTS related tests (lsedlar) +- Allow using Pungi Koji plugin for ostree phases. (jkaluza) +- Allow getting the compose id from CTS (Compose Tracking Service). (jkaluza) +- Fix flake8 issues (lsedlar) +- Optimize the _link_file function to not call os.stat redundantly. This will + eliminate 2 calls to os.stat per one invocation of the _link_file function. + Assuming during the compose build 50000 files are linked, this change will + eliminate 100000 redundant calls to os.stat. (bkhomuts) +- doc: explain sigkey behavior (kdreyer) +- doc: explain tradeoffs with pkgset_allow_reuse (kdreyer) +- doc: fix grammar for pkgset_allow_reuse setting (kdreyer) +- Support --skip-branding option in lorax (hlin) +- docs: Embed phases.svg directly (hlin) +- Execute image_checksum phase right after the dependent phases (hlin) + * Wed Apr 29 2020 Haibo Lin - 4.2.2-1 - scm: Workaround incorrect permissions on created directory (lsedlar) - Fix warning about productimg in skip_phases option (lsedlar) diff --git a/setup.py b/setup.py index 3ccf8f8c..97c850c0 100755 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ packages = sorted(packages) setup( name="pungi", - version="4.2.2", + version="4.2.3", description="Distribution compose tool", url="https://pagure.io/pungi", author="Dennis Gilmore",