- Improve install space required estimation (#1224048) (jkonecny)
- Update the on-disk snapshot of storage when adv. disks are added (#1267944) (vpodzime) - Check that ipv6 kickstart outputs the right ip= (dshea) - Change a variable name for pylint. (dshea) - Do not run time_initialize for image and directory installations (#1274103) (bcl) - Remove unused properties (dshea) - Do not modify the kickstart user data until apply() (dshea) - Make AdvancedUserDialog.run() more readable (dshea) - Improve the behavior of the home directory input. (dshea) - Stop setting inappropriate properties in ksdata. (dshea) - Update the password strength bar during the password strength check. (dshea) - Remove unnecessary grab_focus and set_sensitive calls (dshea) - Use signal handlers in the user spoke more sensibly. (dshea) - Fix potential issues with the username guesser. (dshea) - Make kickstart tests growing LVs stricter (vpodzime) - Point coverage.py to the full path of pyanaconda/ (atodorov) - Don't set BOOTPROTO= when it isn't set (jbacik) - Pass strings to blockdev.dasd_format, not a DASDDevice object. (#1273553) (sbueno+anaconda) - Revert "Use yum to install the mock buildroot for now." (dshea) - decode package name for /etc/sysconfig/kernel (RHBZ #1261569) (awilliam) - Add tests for the more complicated command line options (dshea) - Store fewer kinds of things in the dirinstall option. (dshea) - Fix the parsing of selinux=0 (#1258569) (dshea) - Include a local $ANACONDA_DATADIR in the test environment. (dshea) - Move the command line arguments to anaconda_argparse. (dshea) - Don't crash while logging binary output. (dshea) - Decode program output even if there is no output (#1273145) (dshea) - Add a test for _run_program with binary output (dshea) - Test execWithCapture when the command outputs nothing. (dshea) - Fix a long line in kickstart_tests/functions.sh. (clumens) - Merge pull request #414 from vpodzime/master-lvm_log (vpodzime) - Save the lvm.log Blivet may produce (vpodzime)
This commit is contained in:
parent
8b60610e17
commit
09fb379ea5
1
.gitignore
vendored
1
.gitignore
vendored
@ -43,3 +43,4 @@
|
|||||||
/anaconda-24.2.tar.bz2
|
/anaconda-24.2.tar.bz2
|
||||||
/anaconda-24.3.tar.bz2
|
/anaconda-24.3.tar.bz2
|
||||||
/anaconda-24.4.tar.bz2
|
/anaconda-24.4.tar.bz2
|
||||||
|
/anaconda-24.5.tar.bz2
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
Summary: Graphical system installer
|
Summary: Graphical system installer
|
||||||
Name: anaconda
|
Name: anaconda
|
||||||
Version: 24.4
|
Version: 24.5
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
License: GPLv2+ and MIT
|
License: GPLv2+ and MIT
|
||||||
Group: Applications/System
|
Group: Applications/System
|
||||||
@ -21,7 +21,7 @@ Source0: %{name}-%{version}.tar.bz2
|
|||||||
# Also update in AM_GNU_GETTEXT_VERSION in configure.ac
|
# Also update in AM_GNU_GETTEXT_VERSION in configure.ac
|
||||||
%define gettextver 0.19.1
|
%define gettextver 0.19.1
|
||||||
%define intltoolver 0.31.2-3
|
%define intltoolver 0.31.2-3
|
||||||
%define pykickstartver 2.9
|
%define pykickstartver 2.18
|
||||||
%define dnfver 0.6.4
|
%define dnfver 0.6.4
|
||||||
%define partedver 1.8.1
|
%define partedver 1.8.1
|
||||||
%define pypartedver 2.5-2
|
%define pypartedver 2.5-2
|
||||||
@ -305,6 +305,43 @@ update-desktop-database &> /dev/null || :
|
|||||||
%{_prefix}/libexec/anaconda/dd_*
|
%{_prefix}/libexec/anaconda/dd_*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Oct 28 2015 Brian C. Lane <bcl@redhat.com> - 24.5-1
|
||||||
|
- Improve install space required estimation (#1224048) (jkonecny)
|
||||||
|
- Update the on-disk snapshot of storage when adv. disks are added (#1267944)
|
||||||
|
(vpodzime)
|
||||||
|
- Check that ipv6 kickstart outputs the right ip= (dshea)
|
||||||
|
- Change a variable name for pylint. (dshea)
|
||||||
|
- Do not run time_initialize for image and directory installations (#1274103)
|
||||||
|
(bcl)
|
||||||
|
- Remove unused properties (dshea)
|
||||||
|
- Do not modify the kickstart user data until apply() (dshea)
|
||||||
|
- Make AdvancedUserDialog.run() more readable (dshea)
|
||||||
|
- Improve the behavior of the home directory input. (dshea)
|
||||||
|
- Stop setting inappropriate properties in ksdata. (dshea)
|
||||||
|
- Update the password strength bar during the password strength check. (dshea)
|
||||||
|
- Remove unnecessary grab_focus and set_sensitive calls (dshea)
|
||||||
|
- Use signal handlers in the user spoke more sensibly. (dshea)
|
||||||
|
- Fix potential issues with the username guesser. (dshea)
|
||||||
|
- Make kickstart tests growing LVs stricter (vpodzime)
|
||||||
|
- Point coverage.py to the full path of pyanaconda/ (atodorov)
|
||||||
|
- Don't set BOOTPROTO= when it isn't set (jbacik)
|
||||||
|
- Pass strings to blockdev.dasd_format, not a DASDDevice object. (#1273553)
|
||||||
|
(sbueno+anaconda)
|
||||||
|
- Revert "Use yum to install the mock buildroot for now." (dshea)
|
||||||
|
- decode package name for /etc/sysconfig/kernel (RHBZ #1261569) (awilliam)
|
||||||
|
- Add tests for the more complicated command line options (dshea)
|
||||||
|
- Store fewer kinds of things in the dirinstall option. (dshea)
|
||||||
|
- Fix the parsing of selinux=0 (#1258569) (dshea)
|
||||||
|
- Include a local $ANACONDA_DATADIR in the test environment. (dshea)
|
||||||
|
- Move the command line arguments to anaconda_argparse. (dshea)
|
||||||
|
- Don't crash while logging binary output. (dshea)
|
||||||
|
- Decode program output even if there is no output (#1273145) (dshea)
|
||||||
|
- Add a test for _run_program with binary output (dshea)
|
||||||
|
- Test execWithCapture when the command outputs nothing. (dshea)
|
||||||
|
- Fix a long line in kickstart_tests/functions.sh. (clumens)
|
||||||
|
- Merge pull request #414 from vpodzime/master-lvm_log (vpodzime)
|
||||||
|
- Save the lvm.log Blivet may produce (vpodzime)
|
||||||
|
|
||||||
* Fri Oct 16 2015 Brian C. Lane <bcl@redhat.com> - 24.4-1
|
* Fri Oct 16 2015 Brian C. Lane <bcl@redhat.com> - 24.4-1
|
||||||
- Hide the places sidebar in the ISO chooser widget. (dshea)
|
- Hide the places sidebar in the ISO chooser widget. (dshea)
|
||||||
- Use GtkResponseType values in the iso chooser dialog (dshea)
|
- Use GtkResponseType values in the iso chooser dialog (dshea)
|
||||||
|
Loading…
Reference in New Issue
Block a user