forked from rpms/anaconda
		
	New version 34.17-1
- Always report IPMI events from the exit dialog windows (vponcova) - Always report IPMI events from the exception handler (vponcova) - Always log IPMI events (vponcova) - Add a new handler for PayloadSetupError and SourceSetupError (vponcova) - Remove the error handlers for removed or unused DNF errors (vponcova) - Refactorize the code for handling marking errors (vponcova) - Don't run the error handler in the installation code (vponcova) - Don't run the error handler if there is no callback (vponcova) - Reorganize the mapping of error handlers (vponcova) - Remove the error handler for no such group (vponcova) - Remove the error handler for invalid image size (vponcova) - Flush stdout during the TUI installation (vponcova) - Set the PR status ASAP for kickstart tests (jkonecny) - Always update container images before running workflow (jkonecny) - Solve problem with missing loop device for kstest run (jkonecny) - Remove the error handler for the missing image (vponcova) - Remove the error handler for the unsupported algorithm (vponcova) - Handle errors in the installation tasks (vponcova) - Initialize librepo logger (#1908286) (pkratoch) - Add rpm-tests support for external contributors (jkonecny) - Don't run the execute method in the kickstart installation in TUI by default (vponcova) - Don't run spokes that don't support live payloads (vponcova) - Don't run spokes that don't support dir installations (vponcova) - Don't run spokes that don't support non-package payloads (vponcova) - Create a user interface context (vponcova) - Add how to run a subset of nosetests to tests README (jkonecny) - Fix warning when running a subset of nosetests (jkonecny) - network: fix double-free using libnm function filter_connections() (rvykydal) - Provide a hint for the desired capacity (vponcova) - Fix python3 rpm package name in spec file (jkonecny) - Allow to interrupt media verification (#1349152) (honza.stodola) - Use correct identity for ELN (sgallagh) - virtualization: add missing /var/crash (sbonazzo)
This commit is contained in:
		
							parent
							
								
									730c1b4c92
								
							
						
					
					
						commit
						3194d74352
					
				
							
								
								
									
										1
									
								
								.gitignore
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										1
									
								
								.gitignore
									
									
									
									
										vendored
									
									
								
							| @ -265,3 +265,4 @@ | |||||||
| /anaconda-34.14.tar.bz2 | /anaconda-34.14.tar.bz2 | ||||||
| /anaconda-34.15.tar.bz2 | /anaconda-34.15.tar.bz2 | ||||||
| /anaconda-34.16.tar.bz2 | /anaconda-34.16.tar.bz2 | ||||||
|  | /anaconda-34.17.tar.bz2 | ||||||
|  | |||||||
| @ -1,6 +1,6 @@ | |||||||
| Summary: Graphical system installer | Summary: Graphical system installer | ||||||
| Name:    anaconda | Name:    anaconda | ||||||
| Version: 34.16 | Version: 34.17 | ||||||
| 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 | ||||||
| @ -89,7 +89,7 @@ Requires: python3-blockdev >= %{libblockdevver} | |||||||
| Requires: python3-meh >= %{mehver} | Requires: python3-meh >= %{mehver} | ||||||
| Requires: libreport-anaconda >= %{libreportanacondaver} | Requires: libreport-anaconda >= %{libreportanacondaver} | ||||||
| Requires: libselinux-python3 | Requires: libselinux-python3 | ||||||
| Requires: rpm-python3 >= %{rpmver} | Requires: python3-rpm >= %{rpmver} | ||||||
| Requires: python3-pyparted >= %{pypartedver} | Requires: python3-pyparted >= %{pypartedver} | ||||||
| Requires: python3-requests | Requires: python3-requests | ||||||
| Requires: python3-requests-file | Requires: python3-requests-file | ||||||
| @ -369,6 +369,42 @@ desktop-file-install --dir=%{buildroot}%{_datadir}/applications %{buildroot}%{_d | |||||||
| %{_prefix}/libexec/anaconda/dd_* | %{_prefix}/libexec/anaconda/dd_* | ||||||
| 
 | 
 | ||||||
| %changelog | %changelog | ||||||
|  | * Mon Jan 11 2021 Martin Kolman <mkolman@redhat.com> - 34.17-1 | ||||||
|  | - Always report IPMI events from the exit dialog windows (vponcova) | ||||||
|  | - Always report IPMI events from the exception handler (vponcova) | ||||||
|  | - Always log IPMI events (vponcova) | ||||||
|  | - Add a new handler for PayloadSetupError and SourceSetupError (vponcova) | ||||||
|  | - Remove the error handlers for removed or unused DNF errors (vponcova) | ||||||
|  | - Refactorize the code for handling marking errors (vponcova) | ||||||
|  | - Don't run the error handler in the installation code (vponcova) | ||||||
|  | - Don't run the error handler if there is no callback (vponcova) | ||||||
|  | - Reorganize the mapping of error handlers (vponcova) | ||||||
|  | - Remove the error handler for no such group (vponcova) | ||||||
|  | - Remove the error handler for invalid image size (vponcova) | ||||||
|  | - Flush stdout during the TUI installation (vponcova) | ||||||
|  | - Set the PR status ASAP for kickstart tests (jkonecny) | ||||||
|  | - Always update container images before running workflow (jkonecny) | ||||||
|  | - Solve problem with missing loop device for kstest run (jkonecny) | ||||||
|  | - Remove the error handler for the missing image (vponcova) | ||||||
|  | - Remove the error handler for the unsupported algorithm (vponcova) | ||||||
|  | - Handle errors in the installation tasks (vponcova) | ||||||
|  | - Initialize librepo logger (#1908286) (pkratoch) | ||||||
|  | - Add rpm-tests support for external contributors (jkonecny) | ||||||
|  | - Don't run the execute method in the kickstart installation in TUI by default | ||||||
|  |   (vponcova) | ||||||
|  | - Don't run spokes that don't support live payloads (vponcova) | ||||||
|  | - Don't run spokes that don't support dir installations (vponcova) | ||||||
|  | - Don't run spokes that don't support non-package payloads (vponcova) | ||||||
|  | - Create a user interface context (vponcova) | ||||||
|  | - Add how to run a subset of nosetests to tests README (jkonecny) | ||||||
|  | - Fix warning when running a subset of nosetests (jkonecny) | ||||||
|  | - network: fix double-free using libnm function filter_connections() (rvykydal) | ||||||
|  | - Provide a hint for the desired capacity (vponcova) | ||||||
|  | - Fix python3 rpm package name in spec file (jkonecny) | ||||||
|  | - Allow to interrupt media verification (#1349152) (honza.stodola) | ||||||
|  | - Use correct identity for ELN (sgallagh) | ||||||
|  | - virtualization: add missing /var/crash (sbonazzo) | ||||||
|  | 
 | ||||||
| * Mon Jan 04 2021 Martin Kolman <mkolman@redhat.com> - 34.16-1 | * Mon Jan 04 2021 Martin Kolman <mkolman@redhat.com> - 34.16-1 | ||||||
| - Enable rpm-tests on Fedora ELN (mpitt) | - Enable rpm-tests on Fedora ELN (mpitt) | ||||||
| - Fix create_rpm_test on Fedora ELN/RHEL (mpitt) | - Fix create_rpm_test on Fedora ELN/RHEL (mpitt) | ||||||
|  | |||||||
							
								
								
									
										2
									
								
								sources
									
									
									
									
									
								
							
							
						
						
									
										2
									
								
								sources
									
									
									
									
									
								
							| @ -1 +1 @@ | |||||||
| SHA512 (anaconda-34.16.tar.bz2) = 93fb843778d96d896c0a93e99617503d69ad0122dda6cefc023c74cf1038d14987bf7153acf21800edc7c8ad123ad0f2a61242f8c6abbd4ee95694de03261ef0 | SHA512 (anaconda-34.17.tar.bz2) = fbdc48a8fee53eafb2c3d9756e3affa4659f53d9114ce98c6b5652f1d3b5c8c08cf740fa02939f9bfb245827797429f97529ea7b67574b7e267c5a953ee56375 | ||||||
|  | |||||||
		Loading…
	
		Reference in New Issue
	
	Block a user