New version 32.11-1
- Fix the timeout of DBus calls (vponcova) - Remove pydbus from the spec file (vponcova) - Test DBus support with Gio.TestDBus (vponcova) - Update the support for DBus properties (vponcova) - Create variants for the signal PropertiesChanged (vponcova) - Test the extended support for the DBus observer (vponcova) - Remove PropertiesCache (vponcova) - Extend the DBus observer (vponcova) - Test the extended support for DBus connection (vponcova) - Extend the support for DBus connections (vponcova) - Don't use pydbus in the function get_object_path (vponcova) - Test the client support for DBus objects (vponcova) - Add the client support for DBus objects (vponcova) - Test the server support for DBus objects (vponcova) - Add the server support for DBus objects (vponcova) - Extend DBus constants (vponcova) - Test the extended support for DBus specification (vponcova) - Extend the support for DBus specification (vponcova) - Test the support for parsing the XML specification (vponcova) - Add support for parsing the XML specification (vponcova) - Test the DBus signals (vponcova) - Extend the Signal class (vponcova) - Don't use signals from pydbus (vponcova) - Test the DBus error registration (vponcova) - Don't use DBus error registration from pydbus (vponcova) - Remove pydbus from the comments (vponcova) - Test the extended support for DBus typing (vponcova) - Extend the support for DBus typing (vponcova) - Don't import Variant from pydbus (vponcova) - Fix other payload module cyclic imports (vponcova) - Add code conventions to upstream (jkonecny) - Fix payload module cyclic imports (jkonecny) - Enable networking in the testing environment by default (vponcova) - network: adapt network config via kickstart from disk to NM in initramfs (#1757781) (rvykydal) - network: fix handling of ksdevice=bootif in initramfs (rvykydal) - Make sure we work with fresh data when trying to do netroot (vpodzime) - Make our manual triggering on network in dracut work (#1082500) (vpodzime) - iscsi: do not generate initiator for generated kickstart if iscsi is not used (rvykydal) - network: remove useless function (rvykydal) - network: remove Network command from anaconda (rvykydal) - network: remove parse method from Network command (rvykydal) - network: remove packages attribute from Network command (rvykydal) - Move payload live_os source under its directory (jkonecny) - Create an empty payload source live_os folder (jkonecny) - Move payload service constants to the main dir (jkonecny) - Remove modules.payload.live folder (jkonecny) - Move rest of payload utils to live_image utils (jkonecny) - Move create_rescue_image to payload base utils (jkonecny) - Move get_kernel_version_list to payload base (jkonecny) - Move InstallFromTarTask to live_image payload (jkonecny) - Move InstallFromImageTask to payload.base (jkonecny) - Move UpdateBLSConfigurationTask to payload base (jkonecny) - Move DownloadProgress to payload live_image (jkonecny) - Move TeardownInstallationSourceImageTask to payload (jkonecny) - Move SetupInstallationSourceImageTask to payload (jkonecny) - Move CheckInstallationSourceImageTask to payload (jkonecny) - Fix imports after move of live_image payload (jkonecny) - Move lime_image code to the payloads folder (jkonecny) - Fix imports after move of live_os payload (jkonecny) - Move live_os code to the payloads folder (jkonecny) - Fix imports after move of DNF payload (jkonecny) - Move DNF handler to payloads folder (jkonecny) - Remove useless support for boot loader update (vponcova)
This commit is contained in:
parent
e9257d5f05
commit
4cd6dac8c6
1
.gitignore
vendored
1
.gitignore
vendored
@ -212,3 +212,4 @@
|
||||
/anaconda-32.8.tar.bz2
|
||||
/anaconda-32.9.tar.bz2
|
||||
/anaconda-32.10.tar.bz2
|
||||
/anaconda-32.11.tar.bz2
|
||||
|
@ -4,7 +4,7 @@
|
||||
|
||||
Summary: Graphical system installer
|
||||
Name: anaconda
|
||||
Version: 32.10
|
||||
Version: 32.11
|
||||
Release: 1%{?dist}
|
||||
License: GPLv2+ and MIT
|
||||
URL: http://fedoraproject.org/wiki/Anaconda
|
||||
@ -98,7 +98,6 @@ Requires: python3-gobject-base
|
||||
Requires: python3-dbus
|
||||
Requires: python3-pwquality
|
||||
Requires: python3-systemd
|
||||
Requires: python3-pydbus
|
||||
Requires: python3-productmd
|
||||
Requires: flatpak-libs
|
||||
|
||||
@ -348,6 +347,73 @@ desktop-file-install --dir=%{buildroot}%{_datadir}/applications %{buildroot}%{_d
|
||||
%{_prefix}/libexec/anaconda/dd_*
|
||||
|
||||
%changelog
|
||||
* Thu Oct 24 2019 Martin Kolman <mkolman@redhat.com> - 32.11-1
|
||||
- Fix the timeout of DBus calls (vponcova)
|
||||
- Remove pydbus from the spec file (vponcova)
|
||||
- Test DBus support with Gio.TestDBus (vponcova)
|
||||
- Update the support for DBus properties (vponcova)
|
||||
- Create variants for the signal PropertiesChanged (vponcova)
|
||||
- Test the extended support for the DBus observer (vponcova)
|
||||
- Remove PropertiesCache (vponcova)
|
||||
- Extend the DBus observer (vponcova)
|
||||
- Test the extended support for DBus connection (vponcova)
|
||||
- Extend the support for DBus connections (vponcova)
|
||||
- Don't use pydbus in the function get_object_path (vponcova)
|
||||
- Test the client support for DBus objects (vponcova)
|
||||
- Add the client support for DBus objects (vponcova)
|
||||
- Test the server support for DBus objects (vponcova)
|
||||
- Add the server support for DBus objects (vponcova)
|
||||
- Extend DBus constants (vponcova)
|
||||
- Test the extended support for DBus specification (vponcova)
|
||||
- Extend the support for DBus specification (vponcova)
|
||||
- Test the support for parsing the XML specification (vponcova)
|
||||
- Add support for parsing the XML specification (vponcova)
|
||||
- Test the DBus signals (vponcova)
|
||||
- Extend the Signal class (vponcova)
|
||||
- Don't use signals from pydbus (vponcova)
|
||||
- Test the DBus error registration (vponcova)
|
||||
- Don't use DBus error registration from pydbus (vponcova)
|
||||
- Remove pydbus from the comments (vponcova)
|
||||
- Test the extended support for DBus typing (vponcova)
|
||||
- Extend the support for DBus typing (vponcova)
|
||||
- Don't import Variant from pydbus (vponcova)
|
||||
- Fix other payload module cyclic imports (vponcova)
|
||||
- Add code conventions to upstream (jkonecny)
|
||||
- Fix payload module cyclic imports (jkonecny)
|
||||
- Enable networking in the testing environment by default (vponcova)
|
||||
- network: adapt network config via kickstart from disk to NM in initramfs
|
||||
(#1757781) (rvykydal)
|
||||
- network: fix handling of ksdevice=bootif in initramfs (rvykydal)
|
||||
- Make sure we work with fresh data when trying to do netroot (vpodzime)
|
||||
- Make our manual triggering on network in dracut work (#1082500) (vpodzime)
|
||||
- iscsi: do not generate initiator for generated kickstart if iscsi is not used
|
||||
(rvykydal)
|
||||
- network: remove useless function (rvykydal)
|
||||
- network: remove Network command from anaconda (rvykydal)
|
||||
- network: remove parse method from Network command (rvykydal)
|
||||
- network: remove packages attribute from Network command (rvykydal)
|
||||
- Move payload live_os source under its directory (jkonecny)
|
||||
- Create an empty payload source live_os folder (jkonecny)
|
||||
- Move payload service constants to the main dir (jkonecny)
|
||||
- Remove modules.payload.live folder (jkonecny)
|
||||
- Move rest of payload utils to live_image utils (jkonecny)
|
||||
- Move create_rescue_image to payload base utils (jkonecny)
|
||||
- Move get_kernel_version_list to payload base (jkonecny)
|
||||
- Move InstallFromTarTask to live_image payload (jkonecny)
|
||||
- Move InstallFromImageTask to payload.base (jkonecny)
|
||||
- Move UpdateBLSConfigurationTask to payload base (jkonecny)
|
||||
- Move DownloadProgress to payload live_image (jkonecny)
|
||||
- Move TeardownInstallationSourceImageTask to payload (jkonecny)
|
||||
- Move SetupInstallationSourceImageTask to payload (jkonecny)
|
||||
- Move CheckInstallationSourceImageTask to payload (jkonecny)
|
||||
- Fix imports after move of live_image payload (jkonecny)
|
||||
- Move lime_image code to the payloads folder (jkonecny)
|
||||
- Fix imports after move of live_os payload (jkonecny)
|
||||
- Move live_os code to the payloads folder (jkonecny)
|
||||
- Fix imports after move of DNF payload (jkonecny)
|
||||
- Move DNF handler to payloads folder (jkonecny)
|
||||
- Remove useless support for boot loader update (vponcova)
|
||||
|
||||
* Fri Oct 18 2019 Martin Kolman <mkolman@redhat.com> - 32.10-1
|
||||
- Return back AutoPart kickstart command (#1761901) (jkonecny)
|
||||
- Update pyanaconda/exception.py (japokorn)
|
||||
|
2
sources
2
sources
@ -1 +1 @@
|
||||
SHA512 (anaconda-32.10.tar.bz2) = ce0f2d9637964c2256a883d0c23d096d7285c5274f29637435fe5d47fd74afd0a6175a689d7f4b0662f8c089cf5567512cad475dabc374fa6c7f0dc31400bdfc
|
||||
SHA512 (anaconda-32.11.tar.bz2) = a3154f186d0661c72845ea83b7ad80009cf7471bd80b64a87c809c3d0b84fc1c4c803a6c72e32ad9cbc2204405bc223d2c089b81a9beefafb9ff3e4ebd406efa
|
||||
|
Loading…
Reference in New Issue
Block a user