From 55c6bef6663eeed1a9de09886062deb0b3c024de Mon Sep 17 00:00:00 2001 From: Martin Kolman Date: Mar 21 2019 15:52:44 +0000 Subject: New version 31.6-1 - Test the DBus support for the device tree (vponcova) - Add DBus support for the device tree (vponcova) - Fix the initialization of BootInfo (#1599378) (vponcova) - network module: update module API unit tests (rvykydal) - network module: guard some methods on NM availability (rvykydal) - Remove useless swapoff (vponcova) - Always specify the LUKS version in CustomPartitioningSpoke (#1689699) (vponcova) - Remove the property free_space_snapshot from InstallerStorage (vponcova) - network: fix setting of NetworkDeviceInfo from NM Device (rvykydal) - Hide the encryption checkbox for the interactive partitioning (vponcova) - Deprecate DBusObjectObserver (vponcova) - Remove DBusCachedObserver (vponcova) - Add the method get_file_system_free_space to InstallerStorage (vponcova) - Use get_disk_free_space and get_disk_reclaimable_space in StorageSpoke (vponcova) - Use get_disk_free_space in ResizeDialog (vponcova) - Use get_disk_free_space in CustomPartitioningSpoke (vponcova) - Use get_disk_free_space in SelectedDisksDialog (vponcova) - network: adapt a unit test to get_supported_devices change (rvykydal) - Don't estimate the free space based on the clearpart settings (vponcova) - Update the kickstart data for iSCSI and NVDIMM during the installation (vponcova) - network: share single NM Client in anaconda (rvykydal) - network: handle ONBOOT in ifcfg by network module (rvykydal) - network: network.py cleanup (rvykydal) - Don't generate temporary kickstart in the Storage module (vponcova) - Remove attributes for autopart encryption from the InstallerStorage (vponcova) - Make invalid installation from HDD more visible (jkonecny) - network module: fix updating of ONBOOT value on installed system (rvykydal) - network: remove nm.py (rvykydal) - network: use libnm to get device IP addresses (rvykydal) - network: use libnm to get ntp servers from dhcp options (rvykydal) - network module: provide and use GetActivatedInterfaces (rvykydal) - network: remove unused stuff from nm.py (rvykydal) - network: use GetSupportedDevices API (rvykydal) - network module: provide GetSupportedDevices (rvykydal) - Remove the encrypted_autopart property of the InstallerStorage (vponcova) - Remove the autopart_type property of the InstallerStorage (vponcova) - Remove the autopart_requests property of the InstallerStorage (vponcova) - Remove the do_autopart property of the InstallerStorage (vponcova) - Move the support for scheduling partitions to the Storage module (vponcova) - Move do_autopart to the Storage module (vponcova) - Move do_reqpart to the Storage module (vponcova) - Add a new task for interactive auto partitioning (vponcova) - Replace the function do_kickstart_storage (vponcova) - Replace partitioning executors with tasks (vponcova) - Move partitioning executors to the Storage module (vponcova) - Move swap_suggestion to pyanaconda.storage.utils (vponcova) - network: remove ifcfg.log (rvykydal) - network module: log configuration state after installation task (rvykydal) - network: remove low-level debug logging on IfcfgFile modifications (rvykydal) - network module: use module for logging of configuration state (rvykydal) - network module: move ifcfg logging into the module (rvykydal) - network module: do not log secrets (rvykydal) - network module: rename and add doc to network initialization task interface (rvykydal) - network module: guard initialization tasks by anaconda system configuration (rvykydal) - network: log network initialization better (rvykydal) - network module: use task to dump missing ifcfg files (rvykydal) - network module: use task to set real onboot values (rvykydal) - network module: use task for initramfs connections consolidation (rvykydal) - network module: use task for apply kickstart (rvykydal) - payload: separate blivet.utils & blivet.arch call (jkonecny) - Improve content of the top-level README file (mkolman) --- diff --git a/.gitignore b/.gitignore index 893ea11..f885e25 100644 --- a/.gitignore +++ b/.gitignore @@ -185,3 +185,4 @@ /anaconda-31.3.tar.bz2 /anaconda-31.4.tar.bz2 /anaconda-31.5.tar.bz2 +/anaconda-31.6.tar.bz2 diff --git a/anaconda.spec b/anaconda.spec index 624d0f0..4bcab02 100644 --- a/anaconda.spec +++ b/anaconda.spec @@ -4,7 +4,7 @@ Summary: Graphical system installer Name: anaconda -Version: 31.5 +Version: 31.6 Release: 1%{?dist} License: GPLv2+ and MIT URL: http://fedoraproject.org/wiki/Anaconda @@ -354,6 +354,75 @@ desktop-file-install --dir=%{buildroot}%{_datadir}/applications %{buildroot}%{_d %{_prefix}/libexec/anaconda/dd_* %changelog +* Thu Mar 21 2019 Martin Kolman - 31.6-1 +- Test the DBus support for the device tree (vponcova) +- Add DBus support for the device tree (vponcova) +- Fix the initialization of BootInfo (#1599378) (vponcova) +- network module: update module API unit tests (rvykydal) +- network module: guard some methods on NM availability (rvykydal) +- Remove useless swapoff (vponcova) +- Always specify the LUKS version in CustomPartitioningSpoke (#1689699) + (vponcova) +- Remove the property free_space_snapshot from InstallerStorage (vponcova) +- network: fix setting of NetworkDeviceInfo from NM Device (rvykydal) +- Hide the encryption checkbox for the interactive partitioning (vponcova) +- Deprecate DBusObjectObserver (vponcova) +- Remove DBusCachedObserver (vponcova) +- Add the method get_file_system_free_space to InstallerStorage (vponcova) +- Use get_disk_free_space and get_disk_reclaimable_space in StorageSpoke + (vponcova) +- Use get_disk_free_space in ResizeDialog (vponcova) +- Use get_disk_free_space in CustomPartitioningSpoke (vponcova) +- Use get_disk_free_space in SelectedDisksDialog (vponcova) +- network: adapt a unit test to get_supported_devices change (rvykydal) +- Don't estimate the free space based on the clearpart settings (vponcova) +- Update the kickstart data for iSCSI and NVDIMM during the installation + (vponcova) +- network: share single NM Client in anaconda (rvykydal) +- network: handle ONBOOT in ifcfg by network module (rvykydal) +- network: network.py cleanup (rvykydal) +- Don't generate temporary kickstart in the Storage module (vponcova) +- Remove attributes for autopart encryption from the InstallerStorage + (vponcova) +- Make invalid installation from HDD more visible (jkonecny) +- network module: fix updating of ONBOOT value on installed system (rvykydal) +- network: remove nm.py (rvykydal) +- network: use libnm to get device IP addresses (rvykydal) +- network: use libnm to get ntp servers from dhcp options (rvykydal) +- network module: provide and use GetActivatedInterfaces (rvykydal) +- network: remove unused stuff from nm.py (rvykydal) +- network: use GetSupportedDevices API (rvykydal) +- network module: provide GetSupportedDevices (rvykydal) +- Remove the encrypted_autopart property of the InstallerStorage (vponcova) +- Remove the autopart_type property of the InstallerStorage (vponcova) +- Remove the autopart_requests property of the InstallerStorage (vponcova) +- Remove the do_autopart property of the InstallerStorage (vponcova) +- Move the support for scheduling partitions to the Storage module (vponcova) +- Move do_autopart to the Storage module (vponcova) +- Move do_reqpart to the Storage module (vponcova) +- Add a new task for interactive auto partitioning (vponcova) +- Replace the function do_kickstart_storage (vponcova) +- Replace partitioning executors with tasks (vponcova) +- Move partitioning executors to the Storage module (vponcova) +- Move swap_suggestion to pyanaconda.storage.utils (vponcova) +- network: remove ifcfg.log (rvykydal) +- network module: log configuration state after installation task (rvykydal) +- network: remove low-level debug logging on IfcfgFile modifications (rvykydal) +- network module: use module for logging of configuration state (rvykydal) +- network module: move ifcfg logging into the module (rvykydal) +- network module: do not log secrets (rvykydal) +- network module: rename and add doc to network initialization task interface + (rvykydal) +- network module: guard initialization tasks by anaconda system configuration + (rvykydal) +- network: log network initialization better (rvykydal) +- network module: use task to dump missing ifcfg files (rvykydal) +- network module: use task to set real onboot values (rvykydal) +- network module: use task for initramfs connections consolidation (rvykydal) +- network module: use task for apply kickstart (rvykydal) +- payload: separate blivet.utils & blivet.arch call (jkonecny) +- Improve content of the top-level README file (mkolman) + * Tue Mar 12 2019 Martin Kolman - 31.5-1 - Don't run the storage checker to check autopart (vponcova) - Remove the SnapshotValidateTask class (vponcova) diff --git a/sources b/sources index f64f07e..42729b9 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (anaconda-31.5.tar.bz2) = ac906a05d765ae37d63b8cfe5f9d34f91b7d94881c5c95c88164fcbdf0a407f975f603e2bd8550c2dbd5aa86796730f939695dcec9746f72e4c9a485dfef0ee3 +SHA512 (anaconda-31.6.tar.bz2) = 764df7d563cd6f87e28682e90fa05a9f069339e7f2d2f0f3e520fbd7cdc0ac9d2510a9afd33ed0a0be1c38afe46cf431211a3fc662937c68da2431fa7ec7aca1