- Properly translate c-to-continue on the root selection screen (mkolman)
- Check minimal memory requirements properly (#1267673) (jstodola) - Allow users to be created with an existing GID. (dshea) - Add a test for creating a user with an existing GID. (dshea) - Add tests for gids embmedded in the user groups list. (dshea) - Allow the kickstart --groups list to specify GIDs. (dshea) - Add a --groups argument to the user ks test. (dshea) - Fix the locale pattern packages-instlangs-3 looks for. (dshea) - Raise an error if osimg cannot be found (#1248673) (bcl) - Use the bootloader raid levels for bootloader installation (#1266898) (bcl) - Use otps.display_mode during early startup (#1267140) (mkolman) - Mount stage2 cdrom after running driver-updates (#1266478) (bcl) - Get rid of an unused import in the user spoke. (clumens) - Log crashes from the signal handler. (dshea) - Save a core file when anaconda crashes. (dshea) - Keep environment selection when reentering the software spoke (#1261393) (mkolman) - Only show the user spoke if no users are specified in kickstart (#1253672) (mkolman) - Fix 'cat: /tmp/dd_disk: No such file or directory' (#1251394) (jkonecny) - Do not display curl 404 errors that can be safely ignored (vtrefny) - Catch blkid failure in driver-updates (#1262963) (bcl) - Add kickstart tests for %packages --instLangs (dshea) - Do not display markup in showDetailedError. (dshea) - Skip OEMDRV if interactive DD is requested (#1254270) (bcl) - Drivers are simply under /run/install/DD-x/ (#1254270) (bcl) - Fix branding when iso is downloaded from nfs or hd (#1252756) (jkonecny) - Use yum to install the mock buildroot for now. (dshea) - Rename the gettext tests (dshea) - Bring back the KSTEST_HTTP_ADDON_REPO substitution in nfs-repo-and-addon.sh (clumens) - Run substitution checks on the right kickstart file. (clumens) - Tell gettext that anaconda is not a GNU package. (dshea) - Ignore environment modification warnings in docs/conf.py (dshea) - Check for unsubstituted strings before running a test. (dshea) - Autopart use 90% of disk capacity for required space compare (#1224048) (jkonecny) - Fix include packages install size when downloading on root (#1224048) (jkonecny) - Enable and improve the check for swap LV size in LVM cache kickstart tests (vpodzime) - make-sphinx-docs: Add modules needed to document tests (bcl) - Add test documentation (atodorov) - Fix how the reqpart test checks for /boot, again. (clumens) - Add a way to get default settings when running the kickstart_tests. (clumens) - Change how we ignore non-tests in kickstart_tests. (clumens) - Various fixes to substitution strings in kickstart_tests. (clumens) - Move kickstart_test .ks files to .ks.in. (clumens)
This commit is contained in:
parent
e52dd753f1
commit
d12c730a14
1
.gitignore
vendored
1
.gitignore
vendored
@ -41,3 +41,4 @@
|
||||
/anaconda-24.0.tar.bz2
|
||||
/anaconda-24.1.tar.bz2
|
||||
/anaconda-24.2.tar.bz2
|
||||
/anaconda-24.3.tar.bz2
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
Summary: Graphical system installer
|
||||
Name: anaconda
|
||||
Version: 24.2
|
||||
Version: 24.3
|
||||
Release: 1%{?dist}
|
||||
License: GPLv2+ and MIT
|
||||
Group: Applications/System
|
||||
@ -19,7 +19,7 @@ Source0: %{name}-%{version}.tar.bz2
|
||||
# match the requires versions of things).
|
||||
|
||||
# Also update in AM_GNU_GETTEXT_VERSION in configure.ac
|
||||
%define gettextver 0.18.3
|
||||
%define gettextver 0.19.1
|
||||
%define intltoolver 0.31.2-3
|
||||
%define pykickstartver 2.9
|
||||
%define dnfver 0.6.4
|
||||
@ -305,6 +305,56 @@ update-desktop-database &> /dev/null || :
|
||||
%{_prefix}/libexec/anaconda/dd_*
|
||||
|
||||
%changelog
|
||||
* Fri Oct 02 2015 Brian C. Lane <bcl@redhat.com> - 24.3-1
|
||||
- Properly translate c-to-continue on the root selection screen (mkolman)
|
||||
- Check minimal memory requirements properly (#1267673) (jstodola)
|
||||
- Allow users to be created with an existing GID. (dshea)
|
||||
- Add a test for creating a user with an existing GID. (dshea)
|
||||
- Add tests for gids embmedded in the user groups list. (dshea)
|
||||
- Allow the kickstart --groups list to specify GIDs. (dshea)
|
||||
- Add a --groups argument to the user ks test. (dshea)
|
||||
- Fix the locale pattern packages-instlangs-3 looks for. (dshea)
|
||||
- Raise an error if osimg cannot be found (#1248673) (bcl)
|
||||
- Use the bootloader raid levels for bootloader installation (#1266898) (bcl)
|
||||
- Use otps.display_mode during early startup (#1267140) (mkolman)
|
||||
- Mount stage2 cdrom after running driver-updates (#1266478) (bcl)
|
||||
- Get rid of an unused import in the user spoke. (clumens)
|
||||
- Log crashes from the signal handler. (dshea)
|
||||
- Save a core file when anaconda crashes. (dshea)
|
||||
- Keep environment selection when reentering the software spoke (#1261393)
|
||||
(mkolman)
|
||||
- Only show the user spoke if no users are specified in kickstart (#1253672)
|
||||
(mkolman)
|
||||
- Fix 'cat: /tmp/dd_disk: No such file or directory' (#1251394) (jkonecny)
|
||||
- Do not display curl 404 errors that can be safely ignored (vtrefny)
|
||||
- Catch blkid failure in driver-updates (#1262963) (bcl)
|
||||
- Add kickstart tests for %%packages --instLangs (dshea)
|
||||
- Do not display markup in showDetailedError. (dshea)
|
||||
- Skip OEMDRV if interactive DD is requested (#1254270) (bcl)
|
||||
- Drivers are simply under /run/install/DD-x/ (#1254270) (bcl)
|
||||
- Fix branding when iso is downloaded from nfs or hd (#1252756) (jkonecny)
|
||||
- Use yum to install the mock buildroot for now. (dshea)
|
||||
- Rename the gettext tests (dshea)
|
||||
- Bring back the KSTEST_HTTP_ADDON_REPO substitution in nfs-repo-and-addon.sh
|
||||
(clumens)
|
||||
- Run substitution checks on the right kickstart file. (clumens)
|
||||
- Tell gettext that anaconda is not a GNU package. (dshea)
|
||||
- Ignore environment modification warnings in docs/conf.py (dshea)
|
||||
- Check for unsubstituted strings before running a test. (dshea)
|
||||
- Autopart use 90%% of disk capacity for required space compare (#1224048)
|
||||
(jkonecny)
|
||||
- Fix include packages install size when downloading on root (#1224048)
|
||||
(jkonecny)
|
||||
- Enable and improve the check for swap LV size in LVM cache kickstart tests
|
||||
(vpodzime)
|
||||
- make-sphinx-docs: Add modules needed to document tests (bcl)
|
||||
- Add test documentation (atodorov)
|
||||
- Fix how the reqpart test checks for /boot, again. (clumens)
|
||||
- Add a way to get default settings when running the kickstart_tests. (clumens)
|
||||
- Change how we ignore non-tests in kickstart_tests. (clumens)
|
||||
- Various fixes to substitution strings in kickstart_tests. (clumens)
|
||||
- Move kickstart_test .ks files to .ks.in. (clumens)
|
||||
|
||||
* Fri Sep 11 2015 Brian C. Lane <bcl@redhat.com> - 24.2-1
|
||||
- Handle driver rpms retrieved via network (#1257916) (bcl)
|
||||
- Fix the types passed to chown_dir_tree (#1260318) (dshea)
|
||||
|
Loading…
Reference in New Issue
Block a user