New version 35.9-1
- Improve logging of the download and install sizes (vponcova) - Clean up the code for finding sufficient mount points (vponcova) - Remove pyanaconda.payload.dnf.utils (vponcova) - Move code for cleaning up the download location (vponcova) - Add the get_free_space_map function (vponcova) - Move code from the space_required property (vponcova) - Check if the mount point exists before calling statvfs (#1824357) (vponcova) - Move code from _pick_download_location (vponcova) - Move the get_df_map and pick_mount_point functions (vponcova) - Use a custom stylesheet to define Fedora-specific stylesheet data (vponcova) - Replace download_location with a local variable (vponcova) - Handle modules in the DNF manager (vponcova) - Handle the module command in the Payloads module (vponcova) - ostree: ignore exit code 65 for systemd-tmpfiles (vponcova) - Mark usage of IOError for further investigation (vslavik) - Replace IOError by OSError in scripts (vslavik) - Replace IOError by OSError in dracut code (vslavik) - Replace IOError by OSError for file operations (vslavik) - Move the code for installing packages into a task (vponcova) - Replace IOError when looking up glade files (vslavik) - Replace IOError when starting DBus (vslavik) - Improve messages for the Flatpak installation (vponcova) - Clean up the arguments of the OSTree installation tasks (vponcova) - Change the arguments of ChangeOSTreeRemoteTask (vponcova) - Use the RPM OSTree module to install flatpacks (vponcova) - Move the code for downloading packages into a task (vponcova) - Use the RPM OSTree module to install the payload (vponcova) - Add the _get_source method to the payload modules (vponcova) - Fix unknown error when entering wrong NFS URL address (30516382+century6) - Replace IOError when downloading .treeinfo (vslavik) - consicous lang: fix a fallout of slave -> port patch (rvykydal) - Add logging for iSCSI / FCoE dracut arguments (rvykydal)
This commit is contained in:
parent
39679c31d4
commit
2020e1254f
1
.gitignore
vendored
1
.gitignore
vendored
@ -281,3 +281,4 @@
|
|||||||
/anaconda-35.6.tar.bz2
|
/anaconda-35.6.tar.bz2
|
||||||
/anaconda-35.7.tar.bz2
|
/anaconda-35.7.tar.bz2
|
||||||
/anaconda-35.8.tar.bz2
|
/anaconda-35.8.tar.bz2
|
||||||
|
/anaconda-35.9.tar.bz2
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
Summary: Graphical system installer
|
Summary: Graphical system installer
|
||||||
Name: anaconda
|
Name: anaconda
|
||||||
Version: 35.8
|
Version: 35.9
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
License: GPLv2+ and MIT
|
License: GPLv2+ and MIT
|
||||||
URL: http://fedoraproject.org/wiki/Anaconda
|
URL: http://fedoraproject.org/wiki/Anaconda
|
||||||
@ -422,6 +422,40 @@ desktop-file-install --dir=%{buildroot}%{_datadir}/applications %{buildroot}%{_d
|
|||||||
%{_prefix}/libexec/anaconda/dd_*
|
%{_prefix}/libexec/anaconda/dd_*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Mar 22 2021 Martin Kolman <mkolman@redhat.com> - 35.9-1
|
||||||
|
- Improve logging of the download and install sizes (vponcova)
|
||||||
|
- Clean up the code for finding sufficient mount points (vponcova)
|
||||||
|
- Remove pyanaconda.payload.dnf.utils (vponcova)
|
||||||
|
- Move code for cleaning up the download location (vponcova)
|
||||||
|
- Add the get_free_space_map function (vponcova)
|
||||||
|
- Move code from the space_required property (vponcova)
|
||||||
|
- Check if the mount point exists before calling statvfs (#1824357) (vponcova)
|
||||||
|
- Move code from _pick_download_location (vponcova)
|
||||||
|
- Move the get_df_map and pick_mount_point functions (vponcova)
|
||||||
|
- Use a custom stylesheet to define Fedora-specific stylesheet data (vponcova)
|
||||||
|
- Replace download_location with a local variable (vponcova)
|
||||||
|
- Handle modules in the DNF manager (vponcova)
|
||||||
|
- Handle the module command in the Payloads module (vponcova)
|
||||||
|
- ostree: ignore exit code 65 for systemd-tmpfiles (vponcova)
|
||||||
|
- Mark usage of IOError for further investigation (vslavik)
|
||||||
|
- Replace IOError by OSError in scripts (vslavik)
|
||||||
|
- Replace IOError by OSError in dracut code (vslavik)
|
||||||
|
- Replace IOError by OSError for file operations (vslavik)
|
||||||
|
- Move the code for installing packages into a task (vponcova)
|
||||||
|
- Replace IOError when looking up glade files (vslavik)
|
||||||
|
- Replace IOError when starting DBus (vslavik)
|
||||||
|
- Improve messages for the Flatpak installation (vponcova)
|
||||||
|
- Clean up the arguments of the OSTree installation tasks (vponcova)
|
||||||
|
- Change the arguments of ChangeOSTreeRemoteTask (vponcova)
|
||||||
|
- Use the RPM OSTree module to install flatpacks (vponcova)
|
||||||
|
- Move the code for downloading packages into a task (vponcova)
|
||||||
|
- Use the RPM OSTree module to install the payload (vponcova)
|
||||||
|
- Add the _get_source method to the payload modules (vponcova)
|
||||||
|
- Fix unknown error when entering wrong NFS URL address (30516382+century6)
|
||||||
|
- Replace IOError when downloading .treeinfo (vslavik)
|
||||||
|
- consicous lang: fix a fallout of slave -> port patch (rvykydal)
|
||||||
|
- Add logging for iSCSI / FCoE dracut arguments (rvykydal)
|
||||||
|
|
||||||
* Wed Mar 10 2021 Martin Kolman <mkolman@redhat.com> - 35.8-1
|
* Wed Mar 10 2021 Martin Kolman <mkolman@redhat.com> - 35.8-1
|
||||||
- Make kickstart tests run on branched fedora branches (vslavik)
|
- Make kickstart tests run on branched fedora branches (vslavik)
|
||||||
- Do not follow symlinks when copying /etc/resolv.conf (#1933454) (rvykydal)
|
- Do not follow symlinks when copying /etc/resolv.conf (#1933454) (rvykydal)
|
||||||
|
2
sources
2
sources
@ -1 +1 @@
|
|||||||
SHA512 (anaconda-35.8.tar.bz2) = ffaba85de8579e6a01f7a9b10882c7a089a80e6ce749c0b8d0a2953c6809a9708e0b0b4f696ff555b77897289d2e2ceadfa7a745dfa91ededa0355ba4a95f08e
|
SHA512 (anaconda-35.9.tar.bz2) = 9b2667bdf445565c196c28f44878100c1a19e0f3ca4296bf1b1fa4642bd38dcb6cea34baa3c251a875336b61d1b16c8b45452e47341ab421aecc4069b08bf3a7
|
||||||
|
Loading…
Reference in New Issue
Block a user