From a4a736603332dacb5bd253319370933e871b31e9 Mon Sep 17 00:00:00 2001 From: Martin Kolman Date: Oct 14 2019 15:34:58 +0000 Subject: New version 32.8-1 - Do not use module_debsolv_errors DNF method (jkonecny) - Update pyanaconda/rescue.py (slavik.vladimir) - Make small fixes in the errors file code (jkonecny) - Make error string wrap more sane (jkonecny) - Remove make updates (jkonecny) - Fix regexp for iscsi initiator iqn name validation (#1750865) (rvykydal) - Disable kickstart output from the Payload module (vponcova) - Extend the tests for the Boss module (vponcova) - Mark the network command as removed (vponcova) - Generate the complete kickstart using the Boss (vponcova) - Add DBus support for generating a complete kickstart (vponcova) - Improve the DBus return value for reading a kickstart file (vponcova) - Add DBus structure for a kickstart report (vponcova) - Simplify the DBus support for reading a kickstart file (vponcova) - Don't reimplement the run method in the Boss (vponcova) - Start DBus modules in a task (vponcova) - Remove AnacondaBossInterface (vponcova) - Don't represent the modules observers by their DBus path (vponcova) - Use a signal to propagate the module observers in the Boss (vponcova) - Make the nomount boot option work again (vslavik) - Skip buildins when processing kernel boot args (#1637472) (jkonecny) - Remove ldconfig scriptlet from a spec file (jkonecny) - Switch the makeupdates script to Python 3 (mkolman) - Fix a couple issues identified by Pylint (mkolman) - PEP8 for function names (mkolman) - Remove disused support for automatically fetching packages from Koji (mkolman) - Support basic nested DBus structures (vponcova) - Support resolving of simple type hints (vponcova) - Generate DBus fields with DBusFieldFactory (vponcova) - Fix a missing patch in unit tests (vponcova) - Increase test coverage for payload sources (jkonecny) - Improve docstring on payload source (jkonecny) - Add logging to the payload source ready state (jkonecny) - Adapt tests to a new is_ready solution (jkonecny) - Implement is_ready for live os payload source (jkonecny) - Switch payload source ready property to method (jkonecny) - Remove payload source ready setter (jkonecny) - Add tests for payload sources error propagation (jkonecny) - Raise exception at the end of sources tear down (jkonecny) - Payload sources can't be set when initialized (jkonecny) - Fix doc strings in Live OS payload source (jkonecny) - Fix doc strings in Payload module (jkonecny) - Adapt tests to a new payload grouping tasks (jkonecny) - Use TearDownSourcesTask in LiveOS payload (jkonecny) - Add tear down payload sources task (jkonecny) - Use SetUpSourcesTask in LiveOS payload (jkonecny) - Add set up payload sources task (jkonecny) - Rename Live OS Source specific tasks (jkonecny) - Change test for Live payload source readiness (jkonecny) - Adapt tests to new Installation task with source (jkonecny) - Check source readiness in Payload install task (jkonecny) - Remove handler check for source readiness (jkonecny) - Remove payload sources validate API (jkonecny) - Replace payload attach_source by set_sources (jkonecny) - Rename kind to type (jkonecny) - Rename tear down Live OS source task (jkonecny) - Add source tests to Live OS (jkonecny) - Adapt tests to the new Live OS source solution (jkonecny) - Add check_task_creation_list helper function (jkonecny) - Add source checkers to Live OS handler (jkonecny) - Use source object in the Live OS handler (jkonecny) - Add is source set method to payload handler base (jkonecny) - Adapt Live OS test for detect image migration (jkonecny) - Move Live OS image detection to source (jkonecny) - Adapt payload Live OS handler/source tests (jkonecny) - Migrate image path from Live OS handler to source (jkonecny) - Live OS source can have only one source attached (jkonecny) - Fix line longer than 99 characters in payload (jkonecny) - Add check if payload source is supported (jkonecny) - Add payload source type tests (jkonecny) - Implement type to the payload source base (jkonecny) - Move payload handler/sources types to constants (jkonecny) - Implement source attach to the payload handlers (jkonecny) - Add test for payload CreateSource API (jkonecny) - Wrap payload source creation to DBusContainer (jkonecny) - Add support for source creation to Payload module (jkonecny) - Add payload SourceFactory test (jkonecny) - Add payload source factory (jkonecny) - Add test for the payload HandlerFactory class (jkonecny) - Make payload HandlerFactory class more generic (jkonecny) - Remove required parameter from the Live OS Source (jkonecny) - Add Live OS source tear down test (jkonecny) - Use moved tear down task in Live OS source (jkonecny) - Move Live OS tear down task to Live OS source (jkonecny) - Add test for Live OS source validation method (jkonecny) - Learn Live OS source how to validate source (jkonecny) - Add Validate API to the payload source base (jkonecny) - Add test for Live OS Source set up task (jkonecny) - Move and fix Live OS init source test (jkonecny) - Use set up source task in the Live OS source (jkonecny) - Rename set up task for live os source (jkonecny) - Move set up source live os image task to sources (jkonecny) - Add empty classes for Live OS payload interface (jkonecny) - Add base payload source module (jkonecny) - Add a new python module for payload sources (jkonecny) --- diff --git a/.gitignore b/.gitignore index f385dff..2c88cb9 100644 --- a/.gitignore +++ b/.gitignore @@ -209,3 +209,4 @@ /anaconda-32.5.tar.bz2 /anaconda-32.6.tar.bz2 /anaconda-32.7.tar.bz2 +/anaconda-32.8.tar.bz2 diff --git a/anaconda.spec b/anaconda.spec index b6e6da8..3958ab1 100644 --- a/anaconda.spec +++ b/anaconda.spec @@ -4,7 +4,7 @@ Summary: Graphical system installer Name: anaconda -Version: 32.7 +Version: 32.8 Release: 1%{?dist} License: GPLv2+ and MIT URL: http://fedoraproject.org/wiki/Anaconda @@ -269,9 +269,6 @@ desktop-file-install --dir=%{buildroot}%{_datadir}/applications %{buildroot}%{_d # If no langs found, keep going %find_lang %{name} || : -%ldconfig_scriptlets widgets - - # main package and install-env-deps are metapackages %files @@ -351,6 +348,104 @@ desktop-file-install --dir=%{buildroot}%{_datadir}/applications %{buildroot}%{_d %{_prefix}/libexec/anaconda/dd_* %changelog +* Mon Oct 14 2019 Martin Kolman - 32.8-1 +- Do not use module_debsolv_errors DNF method (jkonecny) +- Update pyanaconda/rescue.py (slavik.vladimir) +- Make small fixes in the errors file code (jkonecny) +- Make error string wrap more sane (jkonecny) +- Remove make updates (jkonecny) +- Fix regexp for iscsi initiator iqn name validation (#1750865) (rvykydal) +- Disable kickstart output from the Payload module (vponcova) +- Extend the tests for the Boss module (vponcova) +- Mark the network command as removed (vponcova) +- Generate the complete kickstart using the Boss (vponcova) +- Add DBus support for generating a complete kickstart (vponcova) +- Improve the DBus return value for reading a kickstart file (vponcova) +- Add DBus structure for a kickstart report (vponcova) +- Simplify the DBus support for reading a kickstart file (vponcova) +- Don't reimplement the run method in the Boss (vponcova) +- Start DBus modules in a task (vponcova) +- Remove AnacondaBossInterface (vponcova) +- Don't represent the modules observers by their DBus path (vponcova) +- Use a signal to propagate the module observers in the Boss (vponcova) +- Make the nomount boot option work again (vslavik) +- Skip buildins when processing kernel boot args (#1637472) (jkonecny) +- Remove ldconfig scriptlet from a spec file (jkonecny) +- Switch the makeupdates script to Python 3 (mkolman) +- Fix a couple issues identified by Pylint (mkolman) +- PEP8 for function names (mkolman) +- Remove disused support for automatically fetching packages from Koji + (mkolman) +- Support basic nested DBus structures (vponcova) +- Support resolving of simple type hints (vponcova) +- Generate DBus fields with DBusFieldFactory (vponcova) +- Fix a missing patch in unit tests (vponcova) +- Increase test coverage for payload sources (jkonecny) +- Improve docstring on payload source (jkonecny) +- Add logging to the payload source ready state (jkonecny) +- Adapt tests to a new is_ready solution (jkonecny) +- Implement is_ready for live os payload source (jkonecny) +- Switch payload source ready property to method (jkonecny) +- Remove payload source ready setter (jkonecny) +- Add tests for payload sources error propagation (jkonecny) +- Raise exception at the end of sources tear down (jkonecny) +- Payload sources can't be set when initialized (jkonecny) +- Fix doc strings in Live OS payload source (jkonecny) +- Fix doc strings in Payload module (jkonecny) +- Adapt tests to a new payload grouping tasks (jkonecny) +- Use TearDownSourcesTask in LiveOS payload (jkonecny) +- Add tear down payload sources task (jkonecny) +- Use SetUpSourcesTask in LiveOS payload (jkonecny) +- Add set up payload sources task (jkonecny) +- Rename Live OS Source specific tasks (jkonecny) +- Change test for Live payload source readiness (jkonecny) +- Adapt tests to new Installation task with source (jkonecny) +- Check source readiness in Payload install task (jkonecny) +- Remove handler check for source readiness (jkonecny) +- Remove payload sources validate API (jkonecny) +- Replace payload attach_source by set_sources (jkonecny) +- Rename kind to type (jkonecny) +- Rename tear down Live OS source task (jkonecny) +- Add source tests to Live OS (jkonecny) +- Adapt tests to the new Live OS source solution (jkonecny) +- Add check_task_creation_list helper function (jkonecny) +- Add source checkers to Live OS handler (jkonecny) +- Use source object in the Live OS handler (jkonecny) +- Add is source set method to payload handler base (jkonecny) +- Adapt Live OS test for detect image migration (jkonecny) +- Move Live OS image detection to source (jkonecny) +- Adapt payload Live OS handler/source tests (jkonecny) +- Migrate image path from Live OS handler to source (jkonecny) +- Live OS source can have only one source attached (jkonecny) +- Fix line longer than 99 characters in payload (jkonecny) +- Add check if payload source is supported (jkonecny) +- Add payload source type tests (jkonecny) +- Implement type to the payload source base (jkonecny) +- Move payload handler/sources types to constants (jkonecny) +- Implement source attach to the payload handlers (jkonecny) +- Add test for payload CreateSource API (jkonecny) +- Wrap payload source creation to DBusContainer (jkonecny) +- Add support for source creation to Payload module (jkonecny) +- Add payload SourceFactory test (jkonecny) +- Add payload source factory (jkonecny) +- Add test for the payload HandlerFactory class (jkonecny) +- Make payload HandlerFactory class more generic (jkonecny) +- Remove required parameter from the Live OS Source (jkonecny) +- Add Live OS source tear down test (jkonecny) +- Use moved tear down task in Live OS source (jkonecny) +- Move Live OS tear down task to Live OS source (jkonecny) +- Add test for Live OS source validation method (jkonecny) +- Learn Live OS source how to validate source (jkonecny) +- Add Validate API to the payload source base (jkonecny) +- Add test for Live OS Source set up task (jkonecny) +- Move and fix Live OS init source test (jkonecny) +- Use set up source task in the Live OS source (jkonecny) +- Rename set up task for live os source (jkonecny) +- Move set up source live os image task to sources (jkonecny) +- Add empty classes for Live OS payload interface (jkonecny) +- Add base payload source module (jkonecny) +- Add a new python module for payload sources (jkonecny) + * Fri Oct 04 2019 Martin Kolman - 32.7-1 - network: split configure hostname task out of network installation task (#1757960) (rvykydal) diff --git a/sources b/sources index a488f3b..4c29f8e 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (anaconda-32.7.tar.bz2) = 5c1bbb7ef424f3d02fab3c88f6bddc2a17c57c34f065ce71f07f243de4cf5de6afb0b4e7b8883def8347db477265577c00b332250483e2a0127effc631303ddd +SHA512 (anaconda-32.8.tar.bz2) = 6cc57b536b24cca9c9a4dcfe59feddf94ec755900ee45c2414708156344289063ca39005d4e1520bb3dda59a1697992132800b21a015d8272d7bc635b4d08b89