From b49b6f16112dc146e53ce536fbc6ddc0e3e220ea Mon Sep 17 00:00:00 2001 From: Martin Kolman Date: Tue, 10 Dec 2019 05:26:08 +0100 Subject: [PATCH] New version 32.16-1 - Add a DBus method for checking resizable devices (vponcova) - Add DBus methods for partitioned devices (vponcova) - Add a DBus method for getting device size limits (vponcova) - Add the attribute protected to the device data (vponcova) - keyboard: make populating of missing values part of installation task (rvykydal) - keyboard: fix write_x_configuration method (rvykydal) - Reduce progress spinner repaints to save CPU (rhbz#1204242) (vslavik) - Document the storage setters (vponcova) - Rename the file with tests for the Blivet partitioning method (vponcova) - Change the type of AppliedPartitioning (vponcova) - Rename the callbacks on_storage_reset (vponcova) - Add the DBus method ResetPartitioning (vponcova) - Rename the DBus method for resetting the storage (vponcova) - Test the boot loader factory (vponcova) - Set up the boot loader factory (vponcova) - Create the boot loader factory (vponcova) - Add a new configuration option for the type of the bootloader (vponcova) - network: wrap IPv4 addresses showed in GUI (#1777706) (rvykydal) - keyboard: do not return None value from apply configuration task (rvykydal) - keyboard: fix reference before assignment in apply keyboard task (rvykydal) - keyboard: add localization module unit tests for keyboard (rvykydal) - keyboard: fix return value of LocaledWrapper.layouts_variants property (rvykydal) - keyboard: fix setting from generic keyboard in ks parsing (rvykydal) - keyboard: move setting of default value into related task (rvykydal) - Raise MountFilesystemError from DBus methods (vponcova) - keyboard: make update_settings_from_task private (rvykydal) - Add the mount point attribute to the device format data (vponcova) - Change mock imports to use the unittest.mock full import path (vslavik) - Rename an attribute of the action data structure (vponcova) - Change service_start_timeout (vponcova) - keyboard: update a comment for future refactorisations (rvykydal) - keyboard: remove superfluous call to write_x_configuration (rvykydal) - Calculate the space on disks with supported disk labels (vponcova) - keyboard: guard activation of keyboard configuration in the module (rvykydal) - keyboard: when converting values restore both console and X (#1775712) (rvykydal) - keyboard: do not store generic keyboard setting at all (rvykydal) - keyboard: split populating of missing keyboard values (rvykydal) - Fix __all__ in pyanaconda.modules.common.structure.* (vponcova) - keyboard: do not convert from X value if we have vconsole in apply (#1776148) (rvykydal) - Change the DBus support for collecting ancestors (vponcova) - Add the attribute removable to the device data (vponcova) - Extend the attributes of the device data (vponcova) - keyboard: fix getting options from LocaledWrapper (rvykydal) - keyboard: move LocaledWrapper into localization module (rvykydal) - keyboard: apply configuration with a task (rvykydal) - keyboard: populate missing keyboard items with a task (rvykydal) - keyboard: write configuration with module task (rvykydal) - keyboard: split out populating of missing values into separate task (rvykydal) - keyboard: remove doc for unused weight parameter. (rvykydal) - keyboard: remove keyboard command from anaconda (rvykydal) - Rename payload sources to source (jkonecny) - Rename PayloadService to PayloadsService (jkonecny) - Rename payloads.payloads to payload.payload (jkonecny) - Rename payload to payloads for DBus services (jkonecny) - Rename payload module to payloads (jkonecny) - Publish main payload under Payloads (jkonecny) - Create PayloadContainer for dynamic provisioning (jkonecny) - Rename payload base to payload (jkonecny) - Use a variable when calling Zanata client in makefile (mkolman) - Clean up the spoke for the advanced storage (vponcova) - Rename payload DBus constants (jkonecny) - Remove handler word from payload leftovers (jkonecny) - Remove handler word from tests (jkonecny) - Rename LiveOSHandler* classes to LiveOS* (jkonecny) - Rename LiveImageHandler* classes to LiveImage* (jkonecny) - Rename DNFHandler* classes to DNF* (jkonecny) - Rename handlers from DNF internal variables (jkonecny) - Rename PackagesHandler* classes to Packages* (jkonecny) - Rename handler to payload in PayloadBase class (jkonecny) - Rename publish_handler to publish_payload (jkonecny) - Rename create_handler to create_payload (jkonecny) - Rename get_active_handler_path to payload path (jkonecny) - Rename is_handler_set to is_payload_set (jkonecny) - Rename payload handler getter and setter to payload (jkonecny) - Rename HandlerFactory to PayloadFactory (jkonecny) - Rename HandlerType to PayloadType (jkonecny) - Remove handler from factories variables (jkonecny) - Rename HandlerNotSetError to PayloadNotSetError (jkonecny) - Rename handler in logs for payload service class (jkonecny) - Rename payload handler internals in payload service (jkonecny) --- .gitignore | 1 + anaconda.spec | 89 ++++++++++++++++++++++++++++++++++++++++++++++++++- sources | 2 +- 3 files changed, 90 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 5de9bca..546fa05 100644 --- a/.gitignore +++ b/.gitignore @@ -217,3 +217,4 @@ /anaconda-32.13.tar.bz2 /anaconda-32.14.tar.bz2 /anaconda-32.15.tar.bz2 +/anaconda-32.16.tar.bz2 diff --git a/anaconda.spec b/anaconda.spec index e6f427f..938cac5 100644 --- a/anaconda.spec +++ b/anaconda.spec @@ -4,7 +4,7 @@ Summary: Graphical system installer Name: anaconda -Version: 32.15 +Version: 32.16 Release: 1%{?dist} License: GPLv2+ and MIT URL: http://fedoraproject.org/wiki/Anaconda @@ -348,6 +348,93 @@ desktop-file-install --dir=%{buildroot}%{_datadir}/applications %{buildroot}%{_d %{_prefix}/libexec/anaconda/dd_* %changelog +* Tue Dec 10 2019 Martin Kolman - 32.16-1 +- Add a DBus method for checking resizable devices (vponcova) +- Add DBus methods for partitioned devices (vponcova) +- Add a DBus method for getting device size limits (vponcova) +- Add the attribute protected to the device data (vponcova) +- keyboard: make populating of missing values part of installation task + (rvykydal) +- keyboard: fix write_x_configuration method (rvykydal) +- Reduce progress spinner repaints to save CPU (rhbz#1204242) (vslavik) +- Document the storage setters (vponcova) +- Rename the file with tests for the Blivet partitioning method (vponcova) +- Change the type of AppliedPartitioning (vponcova) +- Rename the callbacks on_storage_reset (vponcova) +- Add the DBus method ResetPartitioning (vponcova) +- Rename the DBus method for resetting the storage (vponcova) +- Test the boot loader factory (vponcova) +- Set up the boot loader factory (vponcova) +- Create the boot loader factory (vponcova) +- Add a new configuration option for the type of the bootloader (vponcova) +- network: wrap IPv4 addresses showed in GUI (#1777706) (rvykydal) +- keyboard: do not return None value from apply configuration task (rvykydal) +- keyboard: fix reference before assignment in apply keyboard task (rvykydal) +- keyboard: add localization module unit tests for keyboard (rvykydal) +- keyboard: fix return value of LocaledWrapper.layouts_variants property + (rvykydal) +- keyboard: fix setting from generic keyboard in ks parsing (rvykydal) +- keyboard: move setting of default value into related task (rvykydal) +- Raise MountFilesystemError from DBus methods (vponcova) +- keyboard: make update_settings_from_task private (rvykydal) +- Add the mount point attribute to the device format data (vponcova) +- Change mock imports to use the unittest.mock full import path (vslavik) +- Rename an attribute of the action data structure (vponcova) +- Change service_start_timeout (vponcova) +- keyboard: update a comment for future refactorisations (rvykydal) +- keyboard: remove superfluous call to write_x_configuration (rvykydal) +- Calculate the space on disks with supported disk labels (vponcova) +- keyboard: guard activation of keyboard configuration in the module (rvykydal) +- keyboard: when converting values restore both console and X (#1775712) + (rvykydal) +- keyboard: do not store generic keyboard setting at all (rvykydal) +- keyboard: split populating of missing keyboard values (rvykydal) +- Fix __all__ in pyanaconda.modules.common.structure.* (vponcova) +- keyboard: do not convert from X value if we have vconsole in apply (#1776148) + (rvykydal) +- Change the DBus support for collecting ancestors (vponcova) +- Add the attribute removable to the device data (vponcova) +- Extend the attributes of the device data (vponcova) +- keyboard: fix getting options from LocaledWrapper (rvykydal) +- keyboard: move LocaledWrapper into localization module (rvykydal) +- keyboard: apply configuration with a task (rvykydal) +- keyboard: populate missing keyboard items with a task (rvykydal) +- keyboard: write configuration with module task (rvykydal) +- keyboard: split out populating of missing values into separate task + (rvykydal) +- keyboard: remove doc for unused weight parameter. (rvykydal) +- keyboard: remove keyboard command from anaconda (rvykydal) +- Rename payload sources to source (jkonecny) +- Rename PayloadService to PayloadsService (jkonecny) +- Rename payloads.payloads to payload.payload (jkonecny) +- Rename payload to payloads for DBus services (jkonecny) +- Rename payload module to payloads (jkonecny) +- Publish main payload under Payloads (jkonecny) +- Create PayloadContainer for dynamic provisioning (jkonecny) +- Rename payload base to payload (jkonecny) +- Use a variable when calling Zanata client in makefile (mkolman) +- Clean up the spoke for the advanced storage (vponcova) +- Rename payload DBus constants (jkonecny) +- Remove handler word from payload leftovers (jkonecny) +- Remove handler word from tests (jkonecny) +- Rename LiveOSHandler* classes to LiveOS* (jkonecny) +- Rename LiveImageHandler* classes to LiveImage* (jkonecny) +- Rename DNFHandler* classes to DNF* (jkonecny) +- Rename handlers from DNF internal variables (jkonecny) +- Rename PackagesHandler* classes to Packages* (jkonecny) +- Rename handler to payload in PayloadBase class (jkonecny) +- Rename publish_handler to publish_payload (jkonecny) +- Rename create_handler to create_payload (jkonecny) +- Rename get_active_handler_path to payload path (jkonecny) +- Rename is_handler_set to is_payload_set (jkonecny) +- Rename payload handler getter and setter to payload (jkonecny) +- Rename HandlerFactory to PayloadFactory (jkonecny) +- Rename HandlerType to PayloadType (jkonecny) +- Remove handler from factories variables (jkonecny) +- Rename HandlerNotSetError to PayloadNotSetError (jkonecny) +- Rename handler in logs for payload service class (jkonecny) +- Rename payload handler internals in payload service (jkonecny) + * Mon Nov 18 2019 Martin Kolman - 32.15-1 - Fix wrong kdump boot option in boot options docs (vslavik) - Remove unused pylint false positive (jkonecny) diff --git a/sources b/sources index 3f084df..508e617 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (anaconda-32.15.tar.bz2) = 2f23fac79a12ade0f15a62f45987a929e1a701da065f0294565aa012c5fdeb85bc494e37b678a5a3df7df6f05d61468a7b997fcbeb4321f2a0cedd03c39f9d29 +SHA512 (anaconda-32.16.tar.bz2) = 8b9b4e8189cb0bfbe86ba7679b9e74c9b47f41ce219ac2dea39858a5d563b58d861e9bfb99baf297165dbbd1831bdfc0b660c92909c0cb57eca25167ce793f59