New version 34.9-1
- Add link to metacity enums schema (mpitt) - Fix local tests run inside of container (jkonecny) - Clean up the live image payload module (vponcova) - Calculate required space from sources (vponcova) - Provide the set-up and tear-down tasks of the live image source (vponcova) - Use sources in the live image payload (vponcova) - Create a DBus structure for the live image (vponcova) - Create a basic file structure for the live image source (vponcova) - Restrict pylint parallelism to available RAM (mpitt) - Fix crash on nonexisting network config directories (mpitt) - Allow running tests with docker (mpitt) - Clean up container build/run rules and variables (mpitt) - Robustify GitHub actions runner download in ci-tasks container (mpitt) - Add variable for extra labels to GitHub action runner entry point (mpitt) - Don't stop unit tests when the tests failed (jkonecny) - Document possibility to run container tests without autotools (jkonecny) - Make it possible to call make -f Makefile.am (jkonecny) - Don't ignore the timezone kickstart command in the tests (vponcova) - Run validate workflow in ci-tasks container (mpitt) - Fix SECTION headers in docstrings (mpitt) - Add GitHub actions runner to ci-tasks container (martin) - Make it easier to run make commands (jkonecny) - Remove support for the nfsiso: pseudo-protocol (vslavik) - Fix formatting of contribution guidelines document (jkonecny) - Fix missing space in Makefile (jkonecny) - Add more options how to start the tests container (jkonecny) - Fix dependency_solver to not require spec file for pip dependencies (jkonecny) - Add container workflow to tests README file (jkonecny) - Add Makefile target to run tests in container (jkonecny) - Add Makefile target to build container (jkonecny) - Add Dockerfile for anaconda unit-tests (jkonecny) - Allow to format selected DASDs (vponcova) - Test for wrong spellings of OSTree (vslavik) - network: remove function that is not used anymore (rvykydal) - network: do not create ifcfg files in initramfs (rvykydal) - network: handle special binding for ifname= also when updating a connection (rvykydal) - network: update comments in method for dumping default connections (rvykydal) - network: update apply kickstart for everything applied in stage2 (rvykydal) - network: remove task for consolidating of initramfs connections (rvykydal) - network: remove task for setting real ONBOOT values (rvykydal) - Run rpm tests in a GitHub action (martin) - Separate RPM installability test from rpm_tests (martin) - Define make targets for building source and binary rpms (martin) - Drop superfluous build in `make run-rpm-tests-only` (martin) - Fix spelling/name of OSTree (vslavik) - Remove the inst.singlelang boot option (vslavik) - Set up proxy environmental variables with a function (vponcova) - Show in the first screen only translated locales (vslavik) - Run unit tests in a GitHub action (martin) - Mark the ostreesetup kickstart command as useless (vponcova) - Use the RPM OSTree module in the UI (vponcova) - Implement SetUpSourcesWithTask and TearDownSourcesWithTask (vponcova) - Finalize the code that sets up and tear downs the RPM OS Tree source (vponcova) - Improve the string representation of the RPM OSTree source (vponcova) - Implement network_required of the RPM OSTree source (vponcova) - Mock system operations in MountFilesystemsTask task (martin) - Add missing "rpm-build" test dependency (martin) - Add missing "make" BuildRequires (martin) - Fix mock installation/usage instructions (martin) - Fix nosetests name in tests/README.rst (martin) - Fix tests/README.rst syntax (martin) - Stop passing rd.{dm,md,lvm,luks}=0 in installer environment (awilliam)
This commit is contained in:
parent
28244cf713
commit
cddb3b94f7
1
.gitignore
vendored
1
.gitignore
vendored
@ -258,3 +258,4 @@
|
||||
/anaconda-34.6.tar.bz2
|
||||
/anaconda-34.7.tar.bz2
|
||||
/anaconda-34.8.tar.bz2
|
||||
/anaconda-34.9.tar.bz2
|
||||
|
@ -1,6 +1,6 @@
|
||||
Summary: Graphical system installer
|
||||
Name: anaconda
|
||||
Version: 34.8
|
||||
Version: 34.9
|
||||
Release: 1%{?dist}
|
||||
License: GPLv2+ and MIT
|
||||
URL: http://fedoraproject.org/wiki/Anaconda
|
||||
@ -54,6 +54,7 @@ BuildRequires: gobject-introspection-devel
|
||||
BuildRequires: glade-devel
|
||||
BuildRequires: libgnomekbd-devel
|
||||
BuildRequires: libxklavier-devel >= %{libxklavierver}
|
||||
BuildRequires: make
|
||||
BuildRequires: pango-devel
|
||||
BuildRequires: python3-kickstart >= %{pykickstartver}
|
||||
BuildRequires: python3-devel
|
||||
@ -368,6 +369,73 @@ desktop-file-install --dir=%{buildroot}%{_datadir}/applications %{buildroot}%{_d
|
||||
%{_prefix}/libexec/anaconda/dd_*
|
||||
|
||||
%changelog
|
||||
* Wed Oct 14 2020 Martin Kolman <mkolman@redhat.com> - 34.9-1
|
||||
- Add link to metacity enums schema (mpitt)
|
||||
- Fix local tests run inside of container (jkonecny)
|
||||
- Clean up the live image payload module (vponcova)
|
||||
- Calculate required space from sources (vponcova)
|
||||
- Provide the set-up and tear-down tasks of the live image source (vponcova)
|
||||
- Use sources in the live image payload (vponcova)
|
||||
- Create a DBus structure for the live image (vponcova)
|
||||
- Create a basic file structure for the live image source (vponcova)
|
||||
- Restrict pylint parallelism to available RAM (mpitt)
|
||||
- Fix crash on nonexisting network config directories (mpitt)
|
||||
- Allow running tests with docker (mpitt)
|
||||
- Clean up container build/run rules and variables (mpitt)
|
||||
- Robustify GitHub actions runner download in ci-tasks container (mpitt)
|
||||
- Add variable for extra labels to GitHub action runner entry point (mpitt)
|
||||
- Don't stop unit tests when the tests failed (jkonecny)
|
||||
- Document possibility to run container tests without autotools (jkonecny)
|
||||
- Make it possible to call make -f Makefile.am (jkonecny)
|
||||
- Don't ignore the timezone kickstart command in the tests (vponcova)
|
||||
- Run validate workflow in ci-tasks container (mpitt)
|
||||
- Fix SECTION headers in docstrings (mpitt)
|
||||
- Add GitHub actions runner to ci-tasks container (martin)
|
||||
- Make it easier to run make commands (jkonecny)
|
||||
- Remove support for the nfsiso: pseudo-protocol (vslavik)
|
||||
- Fix formatting of contribution guidelines document (jkonecny)
|
||||
- Fix missing space in Makefile (jkonecny)
|
||||
- Add more options how to start the tests container (jkonecny)
|
||||
- Fix dependency_solver to not require spec file for pip dependencies
|
||||
(jkonecny)
|
||||
- Add container workflow to tests README file (jkonecny)
|
||||
- Add Makefile target to run tests in container (jkonecny)
|
||||
- Add Makefile target to build container (jkonecny)
|
||||
- Add Dockerfile for anaconda unit-tests (jkonecny)
|
||||
- Allow to format selected DASDs (vponcova)
|
||||
- Test for wrong spellings of OSTree (vslavik)
|
||||
- network: remove function that is not used anymore (rvykydal)
|
||||
- network: do not create ifcfg files in initramfs (rvykydal)
|
||||
- network: handle special binding for ifname= also when updating a connection
|
||||
(rvykydal)
|
||||
- network: update comments in method for dumping default connections (rvykydal)
|
||||
- network: update apply kickstart for everything applied in stage2 (rvykydal)
|
||||
- network: remove task for consolidating of initramfs connections (rvykydal)
|
||||
- network: remove task for setting real ONBOOT values (rvykydal)
|
||||
- Run rpm tests in a GitHub action (martin)
|
||||
- Separate RPM installability test from rpm_tests (martin)
|
||||
- Define make targets for building source and binary rpms (martin)
|
||||
- Drop superfluous build in `make run-rpm-tests-only` (martin)
|
||||
- Fix spelling/name of OSTree (vslavik)
|
||||
- Remove the inst.singlelang boot option (vslavik)
|
||||
- Set up proxy environmental variables with a function (vponcova)
|
||||
- Show in the first screen only translated locales (vslavik)
|
||||
- Run unit tests in a GitHub action (martin)
|
||||
- Mark the ostreesetup kickstart command as useless (vponcova)
|
||||
- Use the RPM OSTree module in the UI (vponcova)
|
||||
- Implement SetUpSourcesWithTask and TearDownSourcesWithTask (vponcova)
|
||||
- Finalize the code that sets up and tear downs the RPM OS Tree source
|
||||
(vponcova)
|
||||
- Improve the string representation of the RPM OSTree source (vponcova)
|
||||
- Implement network_required of the RPM OSTree source (vponcova)
|
||||
- Mock system operations in MountFilesystemsTask task (martin)
|
||||
- Add missing "rpm-build" test dependency (martin)
|
||||
- Add missing "make" BuildRequires (martin)
|
||||
- Fix mock installation/usage instructions (martin)
|
||||
- Fix nosetests name in tests/README.rst (martin)
|
||||
- Fix tests/README.rst syntax (martin)
|
||||
- Stop passing rd.{dm,md,lvm,luks}=0 in installer environment (awilliam)
|
||||
|
||||
* Thu Oct 01 2020 Martin Kolman <mkolman@redhat.com> - 34.8-1
|
||||
- fix remove unkown partition in sda failed (69908158+xqrustc2020)
|
||||
- Fix show missing inst. prefix warning appropriately (#1875561) (jkonecny)
|
||||
|
2
sources
2
sources
@ -1 +1 @@
|
||||
SHA512 (anaconda-34.8.tar.bz2) = cc9a6e7c7ae17c29051800582e433ed81508b8427ccff9781fedf004d2b9bd22a77ab998f2812dd90e3e2274d2d63c44c5769d2387c70df701054820fca87110
|
||||
SHA512 (anaconda-34.9.tar.bz2) = c895cf6148a6b8143dd4b558edd312372beca2bfbdc62cba713f9c3c41446cbeee61e158baafce6216ec5052e36b5ee80be0673368c176061f77f93b851c242e
|
||||
|
Loading…
Reference in New Issue
Block a user