/[smeserver]/rpms/anaconda/sme10/anaconda.spec
ViewVC logotype

Annotation of /rpms/anaconda/sme10/anaconda.spec

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.4 - (hide annotations) (download)
Fri Jun 12 03:46:49 2020 UTC (3 years, 11 months ago) by jpp
Branch: MAIN
Changes since 1.3: +11 -5 lines
* Wed Jun 10 2020 Jean-Philipe Pialasse <tests@pialasse.com> 21.48.22.158-2.sme
- patch for product.img branding of anaconda

1 unnilennium 1.1 %define livearches %{ix86} x86_64 ppc ppc64 ppc64le
2    
3     Summary: Graphical system installer
4     Name: anaconda
5 jpp 1.2 Version: 21.48.22.158
6 jpp 1.3 Release: 2%{?dist}
7 unnilennium 1.1 License: GPLv2+ and MIT
8     Group: Applications/System
9     URL: http://fedoraproject.org/wiki/Anaconda
10    
11     # To generate Source0 do:
12     # git clone http://git.fedorahosted.org/git/anaconda.git
13     # git checkout -b archive-branch anaconda-%%{version}-%%{release}
14     # ./autogen.sh
15     # make dist
16     Source0: %{name}-%{version}.tar.bz2
17     Patch1: anaconda-centos-add-centos-install-class.patch
18     Patch2: anaconda-centos-set-right-eula-location.patch
19     Patch4: anaconda-centos-disable-mirrors.patch
20     Patch5: anaconda-centos-bootfs-default-to-xfs.patch
21 jpp 1.2 Patch6: anaconda-centos-help-text.patch
22     Patch7: anaconda-centos-skip-retry-if-not-connected.patch
23     Patch8: 9800-rpmostreepayload-Rework-remote-add-handling.patch
24     Patch9: yumpayload-dont-verify-disabled-repos.patch
25     Patch10: anaconda-centos-armhfp-extloader.patch
26     Patch11: anaconda-centos-really-add-centos-install-class.patch
27 unnilennium 1.1
28 jpp 1.3 #KOOZALI
29 jpp 1.4 Patch100: 100-anaconda-koozali-product.patch
30     Patch101: 101-anaconda-koozali-add-koozali-install-class.patch
31     #001-anaconda-koozali-product.patch
32 jpp 1.3 #ENDKOOZALI
33    
34 unnilennium 1.1 # Versions of required components (done so we make sure the buildrequires
35     # match the requires versions of things).
36 jpp 1.2 %define dbusver 1.2.3
37     %define dracutver 033-240
38     %define fcoeutilsver 1.0.12-3.20100323git
39     %define firewalldver 0.3.5-1
40 unnilennium 1.1 %define gettextver 0.18.1
41 jpp 1.2 %define gtk3ver 3.22.10
42     %define helpver 1:7.5.3-1
43 unnilennium 1.1 %define intltoolver 0.31.2-3
44 jpp 1.2 %define iscsiver 6.2.0.870-3
45     %define isomd5sum 1.0.10
46     %define langtablever 0.0.31-3
47     %define libarchivever 3.0.4
48     %define libtimezonemapver 0.4.1-2
49     %define libxklavierver 5.4
50     %define mehver 0.23-1
51     %define nmver 1.0.0-6.git20150107
52 unnilennium 1.1 %define partedver 1.8.1
53 jpp 1.2 %define pykickstartver 1.99.66.20-1
54 unnilennium 1.1 %define pypartedver 2.5-2
55     %define pythonpyblockver 0.45
56 jpp 1.2 %define pythonurlgrabberver 3.9.1-5
57     %define rpmver 4.10.0
58 unnilennium 1.1 %define sckeyboardver 1.3.1
59     %define utillinuxver 2.15.1
60 jpp 1.2 %define yumutilsver 1.1.11-3
61     %define yumver 3.4.3-91
62 unnilennium 1.1
63     BuildRequires: audit-libs-devel
64     BuildRequires: gettext >= %{gettextver}
65 jpp 1.2 BuildRequires: gtk3-devel >= %{gtk3ver}
66 unnilennium 1.1 BuildRequires: gtk-doc
67 jpp 1.2 BuildRequires: gtk3-devel-docs >= %{gtk3ver}
68 unnilennium 1.1 BuildRequires: glib2-doc
69     BuildRequires: gobject-introspection-devel
70     BuildRequires: glade-devel
71     BuildRequires: pygobject3
72     BuildRequires: intltool >= %{intltoolver}
73     BuildRequires: libgnomekbd-devel
74     BuildRequires: libxklavier-devel >= %{libxklavierver}
75     BuildRequires: pango-devel
76     BuildRequires: pykickstart >= %{pykickstartver}
77     %if ! 0%{?rhel}
78     BuildRequires: python-bugzilla
79     %endif
80     BuildRequires: python-devel
81     BuildRequires: python-urlgrabber >= %{pythonurlgrabberver}
82     BuildRequires: python-nose
83     BuildRequires: systemd
84     BuildRequires: yum >= %{yumver}
85     BuildRequires: NetworkManager-devel >= %{nmver}
86     BuildRequires: NetworkManager-glib-devel >= %{nmver}
87     BuildRequires: dbus-devel >= %{dbusver}
88     BuildRequires: dbus-python
89     BuildRequires: rpm-devel >= %{rpmver}
90     BuildRequires: libarchive-devel >= %{libarchivever}
91     %ifarch %livearches
92     BuildRequires: desktop-file-utils
93     %endif
94     %ifarch s390 s390x
95     BuildRequires: s390utils-devel
96     %endif
97     BuildRequires: libtimezonemap-devel >= %{libtimezonemapver}
98    
99     Requires: anaconda-core = %{version}-%{release}
100     Requires: anaconda-gui = %{version}-%{release}
101     Requires: anaconda-tui = %{version}-%{release}
102    
103     %description
104     The anaconda package is a metapackage for the Anaconda installer.
105    
106     %package core
107     Summary: Core of the Anaconda installer
108 jpp 1.2 Requires: python-blivet >= 1:0.61.15.71
109 unnilennium 1.1 Requires: python-meh >= %{mehver}
110     Requires: libreport-anaconda >= 2.0.21-1
111     Requires: libreport-rhel-anaconda-bugzilla >= 2.1.11-1
112     Requires: libselinux-python
113     Requires: rpm-python >= %{rpmver}
114     Requires: parted >= %{partedver}
115     Requires: pyparted >= %{pypartedver}
116     Requires: yum >= %{yumver}
117     Requires: python-urlgrabber >= %{pythonurlgrabberver}
118     Requires: pykickstart >= %{pykickstartver}
119     Requires: langtable-data >= %{langtablever}
120     Requires: langtable-python >= %{langtablever}
121     Requires: libuser-python
122     Requires: authconfig
123     Requires: firewalld >= %{firewalldver}
124     Requires: util-linux >= %{utillinuxver}
125     Requires: dbus-python
126 jpp 1.2 Requires: python-subprocess32
127 unnilennium 1.1 Requires: python-pwquality
128     Requires: python-IPy
129     Requires: python-nss
130     Requires: pytz
131     Requires: realmd
132     Requires: teamd
133     %ifarch %livearches
134     Requires: usermode
135     %endif
136     %ifarch s390 s390x
137     Requires: openssh
138     %endif
139     Requires: isomd5sum >= %{isomd5sum}
140     Requires: yum-utils >= %{yumutilsver}
141     Requires: createrepo
142     Requires: NetworkManager >= %{nmver}
143     Requires: NetworkManager-team
144     Requires: NetworkManager-glib >= %{nmver}
145     Requires: dhclient
146     Requires: kbd
147     Requires: chrony
148     Requires: python-ntplib
149     Requires: rsync
150     Requires: systemd
151     %ifarch %{ix86} x86_64
152     Requires: fcoe-utils >= %{fcoeutilsver}
153 jpp 1.2 Requires: libblockdev-nvdimm
154 unnilennium 1.1 %endif
155     Requires: iscsi-initiator-utils >= %{iscsiver}
156     %ifarch %{ix86} x86_64 ia64
157     Requires: dmidecode
158     %if ! 0%{?rhel}
159     Requires: hfsplus-tools
160     %endif
161     %endif
162     Requires: kexec-tools
163    
164     Requires: python-coverage
165    
166     # required because of the rescue mode and VNC question
167     Requires: anaconda-tui = %{version}-%{release}
168    
169     Obsoletes: anaconda-images <= 10
170     Provides: anaconda-images = %{version}-%{release}
171     Obsoletes: anaconda-runtime < %{version}-%{release}
172     Provides: anaconda-runtime = %{version}-%{release}
173     Obsoletes: booty <= 0.107-1
174    
175     %description core
176     The anaconda-core package contains the program which was used to install your
177     system.
178    
179     %package gui
180     Summary: Graphical user interface for the Anaconda installer
181     Requires: anaconda-core = %{version}-%{release}
182     Requires: anaconda-widgets = %{version}-%{release}
183     Requires: python-meh-gui >= %{mehver}
184     Requires: adwaita-icon-theme
185     Requires: system-logos
186     Requires: tigervnc-server-minimal
187     Requires: libxklavier >= %{libxklavierver}
188     Requires: libgnomekbd
189     Requires: libtimezonemap >= %{libtimezonemapver}
190     Requires: nm-connection-editor
191     %ifarch %livearches
192     Requires: zenity
193     %endif
194     Requires: keybinder3
195     %ifnarch s390 s390x
196     Requires: NetworkManager-wifi
197     %endif
198     Requires: yelp
199     #Requires: anaconda-user-help >= %{helpver}
200    
201 jpp 1.2 # Needed to compile the gsettings files
202     BuildRequires: gsettings-desktop-schemas
203    
204 unnilennium 1.1 %description gui
205     This package contains graphical user interface for the Anaconda installer.
206    
207     %package tui
208     Summary: Textual user interface for the Anaconda installer
209     Requires: anaconda-core = %{version}-%{release}
210    
211     %description tui
212     This package contains textual user interface for the Anaconda installer.
213    
214     %package widgets
215     Summary: A set of custom GTK+ widgets for use with anaconda
216     Group: System Environment/Libraries
217     Requires: pygobject3
218     Requires: python
219    
220     %description widgets
221     This package contains a set of custom GTK+ widgets used by the anaconda installer.
222    
223     %package widgets-devel
224     Summary: Development files for anaconda-widgets
225     Group: Development/Libraries
226     Requires: glade
227     Requires: %{name}-widgets%{?_isa} = %{version}-%{release}
228    
229     %description widgets-devel
230     This package contains libraries and header files needed for writing the anaconda
231     installer. It also contains Python and Glade support files, as well as
232     documentation for working with this library.
233    
234     %package dracut
235     Summary: The anaconda dracut module
236     Requires: dracut >= %{dracutver}
237     Requires: dracut-network
238     Requires: xz
239     Requires: pykickstart
240    
241     %description dracut
242     The 'anaconda' dracut module handles installer-specific boot tasks and
243     options. This includes driver disks, kickstarts, and finding the anaconda
244     runtime on NFS/HTTP/FTP servers or local disks.
245    
246     %prep
247     %setup -q
248     %patch1 -p1
249     %patch2 -p1
250     %patch4 -p1
251     %patch5 -p1
252     %patch6 -p1
253     %patch7 -p1
254 jpp 1.2 %patch8 -p1
255     %patch9 -p1
256     %ifarch %{arm}
257     %patch10 -p1
258     %endif
259    
260     pushd pyanaconda/installclasses/
261     cp -f rhel.py centos.py
262     popd
263    
264     %patch11 -p1
265 unnilennium 1.1
266 jpp 1.4 #KOOZALI
267     %patch100 -p1
268     pushd pyanaconda/installclasses/
269     cp -f centos.py koozali.py
270     popd
271     ##%patch101 -p1
272     #END KOOZALI
273    
274 unnilennium 1.1 %build
275     %configure --disable-static \
276     --enable-introspection \
277     --enable-gtk-doc
278     %{__make} %{?_smp_mflags}
279    
280     %install
281     %{make_install}
282     find %{buildroot} -type f -name "*.la" | xargs %{__rm}
283    
284     %ifarch %livearches
285     desktop-file-install ---dir=%{buildroot}%{_datadir}/applications %{buildroot}%{_datadir}/applications/liveinst.desktop
286    
287     # Add a sitecustomize.py to be loaded by liveinst
288     mkdir -p %{buildroot}%{_datadir}/anaconda/site-python
289     install -m 0644 pyanaconda/sitecustomize.py %{buildroot}%{_datadir}/anaconda/site-python/
290     %endif
291     # NOTE: If you see "error: Installed (but unpackaged) file(s) found" that include liveinst files,
292     # check the IS_LIVEINST_ARCH in configure.ac to make sure your architecture is properly defined
293    
294     %find_lang %{name}
295    
296     %post widgets -p /sbin/ldconfig
297     %postun widgets -p /sbin/ldconfig
298    
299    
300     %ifarch %livearches
301     %post
302     update-desktop-database &> /dev/null || :
303     %endif
304    
305     %ifarch %livearches
306     %postun
307     update-desktop-database &> /dev/null || :
308     %endif
309    
310     %files
311     %doc COPYING
312    
313     %files core -f %{name}.lang
314     %doc COPYING
315     %{_unitdir}/*
316     %{_prefix}/lib/systemd/system-generators/*
317     %{_bindir}/instperf
318     %{_bindir}/anaconda-disable-nm-ibft-plugin
319     %{_sbindir}/anaconda
320     %{_sbindir}/handle-sshpw
321     %{_datadir}/anaconda
322     %{_datadir}/anaconda/help/*
323     %exclude %{_datadir}/anaconda/tzmapdata
324     %{_prefix}/libexec/anaconda
325     %{_libdir}/python*/site-packages/pyanaconda/*
326     %exclude %{_libdir}/python*/site-packages/pyanaconda/rescue.py*
327     %exclude %{_libdir}/python*/site-packages/pyanaconda/ui/gui/*
328     %exclude %{_libdir}/python*/site-packages/pyanaconda/ui/tui/*
329     %{_bindir}/analog
330     %{_bindir}/anaconda-cleanup
331     %ifarch %livearches
332     %{_bindir}/liveinst
333     %{_sbindir}/liveinst
334     %config(noreplace) %{_sysconfdir}/pam.d/*
335     %config(noreplace) %{_sysconfdir}/security/console.apps/*
336     %{_sysconfdir}/X11/xinit/xinitrc.d/*
337     %{_datadir}/applications/*.desktop
338     %endif
339    
340     %files gui
341     %{_libdir}/python*/site-packages/pyanaconda/ui/gui/*
342 jpp 1.2 %{_datadir}/themes/Anaconda/*
343 unnilennium 1.1
344     %files tui
345     %{_libdir}/python*/site-packages/pyanaconda/rescue.py
346     %{_libdir}/python*/site-packages/pyanaconda/ui/tui/*
347    
348     %files widgets
349     %{_libdir}/libAnacondaWidgets.so.*
350     %{_libdir}/girepository*/AnacondaWidgets*typelib
351     %{_libdir}/python*/site-packages/gi/overrides/*
352    
353     %files widgets-devel
354     %{_libdir}/libAnacondaWidgets.so
355     %{_includedir}/*
356     %{_datadir}/glade/catalogs/AnacondaWidgets.xml
357     %{_datadir}/gtk-doc
358    
359     %files dracut
360     %dir %{_prefix}/lib/dracut/modules.d/80%{name}
361     %{_prefix}/lib/dracut/modules.d/80%{name}/*
362     %{_prefix}/libexec/anaconda/dd_*
363    
364     %changelog
365 jpp 1.3 * Wed Jun 10 2020 Jean-Philipe Pialasse <tests@pialasse.com> 21.48.22.158-2.sme
366     - patch for product.img branding of anaconda
367    
368 jpp 1.2 * Tue Mar 31 2020 CentOS Sources <bugs@centos.org> - 21.48.22.158-1.el7.centos
369 unnilennium 1.1 - Add CentOS install class as default
370     - use the right path for the EULA string (issue 7165, bstinson)
371     - use efi_dir = centos
372     - disable the mirrorlist options
373     - make boot part fs default to xfs
374    
375 jpp 1.2 * Tue Sep 10 2019 Radek Vykydal <rvykydal@redhat.com> - 21.48.22.158-1
376     - network: use DEVICETYPE for team when updating virtual slaves ifcfgs
377     (rvykydal)
378     Resolves: rhbz#1680606
379     - dracut/parse-kickstart: Set DEVICETYPE instead of TYPE in a team master ifcfg file
380     (ptalbert)
381     Resolves: rhbz#1680606
382    
383     * Tue Sep 03 2019 Radek Vykydal <rvykydal@redhat.com> - 21.48.22.157-1
384     - Handle exceptions without GTK (vponcova)
385     Resolves: rhbz#1712987
386    
387     * Fri Jun 14 2019 Radek Vykydal <rvykydal@redhat.com> - 21.48.22.156-1
388     - Pass nosmt boot option to installed system (rvykydal)
389     Resolves: rhbz#1718838
390    
391     * Tue Jun 04 2019 Radek Vykydal <rvykydal@redhat.com> - 21.48.22.155-1
392     - Pull in new translations (rvykydal)
393     Related: rhbz#1688213
394    
395     * Tue May 14 2019 Radek Vykydal <rvykydal@redhat.com> - 21.48.22.154-1
396     - Fix the installation from NFS (vponcova)
397     Resolves: rhbz#1708070
398    
399     * Tue May 07 2019 Radek Vykydal <rvykydal@redhat.com> - 21.48.22.153-1
400     - Fix tests and add new tests (jkonecny)
401     Related: rhbz#1701032
402     - Do not calculate hash for disabled repos (jkonecny)
403     Related: rhbz#1701032
404     - Test proxy only if set (jkonecny)
405     Related: rhbz#1701032
406     - Add certificate to the repo files (jkonecny)
407     Resolves: rhbz#1701032
408     - Use SSLOptions for RepoMDMetaHash object (jkonecny)
409     Related: rhbz#1701032
410     - Use SSLOptions for YUM calls (jkonecny)
411     Related: rhbz#1701032
412     - Use SSLOptions for Base repository (jkonecny)
413     Related: rhbz#1701032
414     - Use new ssl certificate KS option for .treeinfo (lars)
415     Related: rhbz#1701032
416    
417     * Wed Apr 24 2019 Radek Vykydal <rvykydal@redhat.com> - 21.48.22.152-1
418     - Change the overflow color (vponcova)
419     Resolves: rhbz#1700471
420    
421     * Tue Apr 16 2019 Radek Vykydal <rvykydal@redhat.com> - 21.48.22.151-1
422     - Support setting network default onboot in rhv installclass (qiyuan)
423     Resolves: rhbz#1690336
424    
425     * Mon Mar 25 2019 Martin Kolman <mkolman@redhat.com> - 21.48.22.150-1
426     - Detect and warn if SMT is enabled (vponcova)
427     Resolves: rhbz#1678353
428    
429     * Tue Mar 05 2019 Radek Vykydal <rvykydal@redhat.com> - 21.48.22.149-1
430     - Offer only supported sector sizes in NVDIMM reconfiguration dialog (rvykydal)
431     Resolves: rhbz#1614049
432    
433     * Thu Feb 07 2019 Radek Vykydal <rvykydal@redhat.com> - 21.48.22.148-1
434     - Change Skylake Spectre_V2 default to Retpolines (vponcova)
435     Resolves: rhbz#1659626
436     - nvdimm: update ks data for actions in UI (rvykydal)
437     Resolves: rhbz#1620109
438     - nvdimm: use pykickstart constant for setting reconfigure mode (rvykydal)
439     Related: rhbz#1620109
440     - Skip version when processing kernel boot args (jkonecny)
441     Resolves: rhbz#1637112
442     - Make save button insensitive in LUKS dialog with no input (mkolman)
443     Resolves: rhbz#1489713
444    
445     * Wed Sep 26 2018 Radek Vykydal <rvykydal@redhat.com> - 21.48.22.147-1
446     - Pull in new translations (rvykydal)
447     Related: rhbz#1569416
448    
449     * Wed Sep 19 2018 Radek Vykydal <rvykydal@redhat.com> - 21.48.22.146-1
450     - Revert "If someone really wants to eject the cdrom, then do it. (jkonecny)"
451     Resolves: rhbz#1618408
452    
453     * Tue Aug 28 2018 Radek Vykydal <rvykydal@redhat.com> - 21.48.22.145-1
454     - Pull in new translations (rvykydal)
455     Resolves: rhbz#1569416
456    
457     * Fri Jul 27 2018 Radek Vykydal <rvykydal@redhat.com> - 21.48.22.144-1
458     - Don't allow unlocking and using of LUKS2 devices (vponcova)
459     Resolves: rhbz#1608251
460     - Fix glade accelerator conflicts (rvykydal)
461     Related: rhbz#1602436
462     - Add nvdimm files to POTFILES.in (rvykydal)
463     Related: rhbz#1602436
464     - Support nvdimm only on x86_64 (rvykydal)
465     Resolves: rhbz#1602436
466    
467     * Fri Jun 22 2018 Radek Vykydal <rvykydal@redhat.com> - 21.48.22.143-1
468     - Add data loss warning to nvdimm reconfigure dialog. (rvykydal)
469     Resolves: rhbz#1280500
470     - Add UI feedback for disk repopulating after nvdimm reconfiguration.
471     (rvykydal)
472     Resolves: rhbz#1280500
473     - Use only devices specified by nvdimm command for installation. (rvykydal)
474     Resolves: rhbz#1280500
475     - Add option to reconfigure nvdimm devices into sector mode. (rvykydal)
476     Resolves: rhbz#1280500
477     - Allow only devices in sector mode to be selected. (rvykydal)
478     Resolves: rhbz#1280500
479     - Add nvdimm devices to Advanced Storage spoke. (rvykydal)
480     Resolves: rhbz#1280500
481     - Add kickstart support for nvdimm reconfiguration to sector mode. (rvykydal)
482     Resolves: rhbz#1280500
483    
484     * Tue Jun 05 2018 Radek Vykydal <rvykydal@redhat.com> - 21.48.22.142-1
485     - If someone really wants to eject the cdrom, then do it. (sbueno)
486     Resolves: rhbz#1499792
487    
488     * Wed May 30 2018 Radek Vykydal <rvykydal@redhat.com> - 21.48.22.141-1
489     - Use subprocess32 to prevent concurrency issues. (rvykydal)
490     Resolves: rhbz#1581200
491    
492     * Wed May 23 2018 Radek Vykydal <rvykydal@redhat.com> - 21.48.22.140-1
493     - Preserve the boot option zfcp.allow_lun_scan (vponcova)
494     Resolves: rhbz#1561662
495     - Don't display "Alternate Architectures" in product name (rvykydal)
496     Resolves: rhbz#1488558
497    
498     * Wed May 16 2018 Radek Vykydal <rvykydal@redhat.com> - 21.48.22.139-1
499     - installclasses/rhelah: Allow LVM thin and dm-crypt (walters)
500     Resolves: rhbz#1546252
501     - Ask for a default passphrase if required (vponcova)
502     Resolves: rhbz#1436304
503     - Add support for setting different types of passwords in TUI (vponcova)
504     Related: rhbz#1436304
505    
506     * Thu May 10 2018 Radek Vykydal <rvykydal@redhat.com> - 21.48.22.138-1
507     - Fix crash on inst.noverifyssl with non-url method (rvykydal)
508     Resolves: rhbz#1515678
509    
510     * Wed May 02 2018 Radek Vykydal <rvykydal@redhat.com> - 21.48.22.137-1
511     - Improve UI feedback for invalid boot on non-iBFT iSCSI devices. (rvykydal)
512     Related: rhbz#1562301
513     - Add inst.nonibftiscsiboot boot option. (rvykydal)
514     Resolves: rhbz#1562301
515    
516     * Wed Apr 25 2018 Radek Vykydal <rvykydal@redhat.com> - 21.48.22.136-1
517     - Once again fix cmdline error handling. (sbueno+anaconda)
518     Resolves: rhbz#1360223
519     - Extend the timeout period to 180s in the case of cmdline error.
520     (sbueno+anaconda)
521     Resolves: rhbz#1360223
522     - kickstart: "clearpart --list" does not work (marcel)
523     Resolves: rhbz#1561930
524    
525     * Mon Apr 16 2018 Radek Vykydal <rvykydal@redhat.com> - 21.48.22.135-1
526     - Clear errors when a user updates partitioning settings (vponcova)
527     Resolves: rhbz#1535781
528     - Don't try to create required partitions if there are none (vponcova)
529     Resolves: rhbz#1557485
530     - Fix parsing of hostname from cmdline for ipv6. (rvykydal)
531     Resolves: rhbz#1554271
532    
533     * Mon Feb 19 2018 Radek Vykydal <rvykydal@redhat.com> - 21.48.22.134-1
534     - Revert "UI support for configuring certain mitigations (mkolman)"
535     Resolves: rhbz#1546267
536     - Revert "Performance spoke related CI fixes" (mkolman)
537     Related: rhbz#1546267
538     - Revert "Fix mitigation toggling with kickstart" (mkolman)
539     Related: rhbz#1546267
540    
541     * Wed Feb 14 2018 Radek Vykydal <rvykydal@redhat.com> - 21.48.22.133-1
542     - Fix mitigation toggling with kickstart (mkolman)
543     Related: rhbz#1534833
544    
545     * Mon Feb 12 2018 Radek Vykydal <rvykydal@redhat.com> - 21.48.22.132-1
546     - Performance spoke related CI fixes (mkolman)
547     Related: rhbz#1534833
548    
549     * Wed Feb 07 2018 Radek Vykydal <rvykydal@redhat.com> - 21.48.22.131-1
550     - UI support for configuring certain mitigations (mkolman)
551     Resolves: rhbz#1534833
552    
553     * Mon Jan 08 2018 Radek Vykydal <rvykydal@redhat.com> - 21.48.22.130-1
554     - kickstart: use RHEL7_Firewall instead of F28_Firewall (dusty)
555     Related: rhbz#1526450
556     - kickstart: support firewall --use-system-defaults (dusty)
557     Resolves: rhbz#1526450
558     - Check payload is set before accessing its data (mkolman)
559     Resolves: rhbz#1524785
560     - Fix bad bash '*' expansion when loading kernel modules (jkonecny)
561     Resolves: rhbz#1519220
562    
563     * Fri Dec 08 2017 Radek Vykydal <rvykydal@redhat.com> - 21.48.22.129-1
564     - Update translations (ljanda)
565     Resolves: rhbz#1480523
566    
567     * Wed Nov 15 2017 Radek Vykydal <rvykydal@redhat.com> - 21.48.22.128-1
568     - Add support for the new 'mount' kickstart command (vpodzime)
569     Resolves: rhbz#1450922
570    
571     * Tue Nov 07 2017 Radek Vykydal <rvykydal@redhat.com> - 21.48.22.127-1
572     - Enable SE/HMC file access to repo (vponcova)
573     Resolves: rhbz#1289918
574     - Support timeout and retries options in %%packages section (vponcova)
575     Resolves: rhbz#1448459
576    
577     * Thu Oct 12 2017 Radek Vykydal <rvykydal@redhat.com> - 21.48.22.126-1
578     - Add support for the RHV branded help content variant (mkolman)
579     Resolves: rhbz#1378010
580    
581     * Thu Oct 05 2017 Radek Vykydal <rvykydal@redhat.com> - 21.48.22.125-1
582     - Fix storage spoke completeness checking (rvykydal)
583     Resolves: rhbz#1496416
584     - Missing dot in testing availability message (jkonecny)
585     Related: rhbz#1478970
586    
587     * Thu Sep 07 2017 Radek Vykydal <rvykydal@redhat.com> - 21.48.22.124-1
588     - network: add support for kickstart --bindto=mac for virtual devices
589     (rvykydal)
590     Resolves: rhbz#1328576
591     - network: support mac bound network settings as first class (rvykydal)
592     Related: rhbz#1328576
593     - network: add support for kickstart --bindto=mac for wired devices (rvykydal)
594     Resolves: rhbz#1328576
595    
596     * Mon Sep 04 2017 Radek Vykydal <rvykydal@redhat.com> - 21.48.22.123-1
597     - Skip temporarily unavailable checks in the source spoke (mkolman)
598     Resolves: rhbz#1365416
599     - Fix restart payload thread in Network spoke GUI (jkonecny)
600     Related: rhbz#1478970
601     - Add the boot option inst.xtimeout (vponcova)
602     Resolves: rhbz#1462035
603     - Add missing gtk3 required version to spec file (jkonecny)
604     Resolves: rhbz#1445648
605     - Sort spec required versions alphabetically (jkonecny)
606     Related: rhbz#1445648
607     - Fix testing of the kickstart version (vponcova)
608     Related: rhbz#1412159
609     - Add tests for the install class factory and the installclass command
610     (vponcova)
611     Related: rhbz#1412159
612     - Support for the installclass kickstart command (vponcova)
613     Resolves: rhbz#1412159
614     - Modules with install classes should define __all__ (vponcova)
615     Related: rhbz#1412159
616     - Refactorization of the installclass.py (vponcova)
617     Related: rhbz#1412159
618     - timezone: for kickstart allow also timezones not offered by GUI (rvykydal)
619     Resolves: rhbz#1452873
620    
621     * Tue Aug 22 2017 Radek Vykydal <rvykydal@redhat.com> - 21.48.22.122-1
622     - Network spoke freeze when testing availability (jkonecny)
623     Related: rhbz#1478970
624     - Fix proxy settings badly used when testing repos (jkonecny)
625     Resolves: rhbz#1478970
626     - installclasses/rhelah: Bump default / to 15GB max (walters)
627     Resolves: rhbz#1481768
628     - Prevent crash in GUI with incomplete IMSM array (mkolman)
629     Resolves: rhbz#1465944
630     - Show IDs of DASDs to be formatted in TUI (vponcova)
631     Resolves: rhbz#1269174
632     - rpmostreepayload: Rollup backport of Fedora patches (walters)
633     Resolves: rhbz#1459623
634     - Use SHA256 instead of MD5 for repoMDHash (bcl)
635     Related: rhbz#1341280
636     - Refactor imports in kickstart.py (jkonecny)
637     Related: rhbz#1463118
638     - Use context manager to check KickstartError (jkonecny)
639     Resolves: rhbz#1463118
640     - Use KickstartError instead of KickstartParseError (jkonecny)
641     Related: rhbz#1463118
642    
643     * Wed Jun 21 2017 Radek Vykydal <rvykydal@redhat.com> - 21.48.22.121-1
644     - rpmostreepayload: Stub out payload methods which use `import rpm` (walters)
645     Related: rhbz#1462979
646    
647     * Tue Jun 13 2017 Radek Vykydal <rvykydal@redhat.com> - 21.48.22.120-1
648     - Update translations (ljanda)
649     Related: rhbz#1383911
650    
651     * Mon Jun 12 2017 Radek Vykydal <rvykydal@redhat.com> - 21.48.22.119-1
652     - Delete file systems used only by a given installation (vponcova)
653     Resolves: rhbz#1453097
654    
655     * Thu Jun 08 2017 Radek Vykydal <rvykydal@redhat.com> - 21.48.22.118-1
656     - rpmostreepayload: [rhel7only] Move tmpfiles to after mount setup (walters)
657     Resolves: rhbz#1459623
658     - rpmostreepayload: Handle /var as a user-specified mountpoint (walters)
659     Resolves: rhbz#1459623
660    
661     * Tue May 30 2017 Radek Vykydal <rvykydal@redhat.com> - 21.48.22.117-1
662     - Root checking fixes password for password from kickstart (mkolman)
663     Related: rhbz#1356966
664     - Improve the GUI password checker (mkolman)
665     Related: rhbz#1356966
666     - Respect changesok policy on root password spoke (mkolman)
667     Resolves: rhbz#1356966
668     - Update translations of password checking strings (rvykydal)
669     Resolves: rhbz#1383911
670    
671     * Mon May 29 2017 Radek Vykydal <rvykydal@redhat.com> - 21.48.22.116-1
672     - Allow nonstrict behaviour for all passwords in tui (vponcova)
673     Resolves: rhbz#1450326
674     - Fix setting errors and warnings in the StorageCheckHandler (vponcova)
675     Resolves: rhbz#1453130
676     - Mark post inst tools as disabled only if firstboot --disable is used
677     (mkolman)
678     Resolves: rhbz#1448940
679     - Set the default filesystem type from a kickstart file (vponcova)
680     Resolves: rhbz#1449099
681    
682     * Wed May 24 2017 Radek Vykydal <rvykydal@redhat.com> - 21.48.22.115-1
683     - Show a no network warning for network installation source. (vponcova)
684     Related: rhbz#1418604
685     - Show warnings about enabling the network time (vponcova)
686     Resolves: rhbz#1418604
687     - Fix generating UUID even for pre snapshots (jkonecny)
688     Related: rhbz#1113207
689    
690     * Mon May 15 2017 Radek Vykydal <rvykydal@redhat.com> - 21.48.22.114-1
691     - Show the text of completions in the datetime spoke. (vponcova)
692     Related: rhbz#1447984
693     - Look higher for the combobox associated with an entry (dshea)
694     Resolves: rhbz#1447984
695     - Fix the addon handlers for the checkbox (vponcova)
696     Resolves: rhbz#1448187
697    
698     * Thu May 11 2017 Radek Vykydal <rvykydal@redhat.com> - 21.48.22.113-1
699     - network: handle multiple connections for one device better (rvykydal)
700     Resolves: rhbz#1444887
701     - network: catch exception when reading in-memory connection being removed
702     (rvykydal)
703     Related: rhbz#1444887
704     - Compare empty confirmation field against input (mkolman)
705     Resolves: rhbz#1438832
706    
707     * Tue May 09 2017 Radek Vykydal <rvykydal@redhat.com> - 21.48.22.112-1
708     - Properly iterate over kickstart locations in a job (vponcova)
709     Resolves: rhbz#1443485
710     - Onlyuse devices of the ignoredisk command should be only disks (vponcova)
711     Related: rhbz#1327439
712     - Fix device_name_is_disk to fully support raid devices (vponcova)
713     Resolves: rhbz#1327439
714    
715     * Thu Apr 27 2017 Radek Vykydal <rvykydal@redhat.com> - 21.48.22.111-1
716     - Adapt to treeinfo addon section format change (rvykydal)
717     Related: rhbz#1437510
718     - Make geolocation with kickstart possible (mkolman)
719     Resolves: rhbz#1358331
720     - Show or hide the content of the expander (vponcova)
721     Resolves: rhbz#1441733
722     - Fix a typo in anaconda-pre.service (mkolman)
723     Resolves: rhbz#1421246
724    
725     * Thu Apr 20 2017 Radek Vykydal <rvykydal@redhat.com> - 21.48.22.110-1
726     - Adapt to treeinfo format change (variants -> addons) (rvykydal)
727     Resolves: rhbz#1437510
728     - network: fix setting hostname via boot options (rvykydal)
729     Resolves: rhbz#1441337
730     - Bump version of Pykickstart and Blivet (jkonecny)
731     Related: rhbz#1113207
732     - Add XFS uuid changer (jkonecny)
733     Related: rhbz#1113207
734     - Support --when parameter in snapshot (jkonecny)
735     Related: rhbz#1113207
736     - Add snapshot support (jkonecny)
737     Resolves: rhbz#1113207
738    
739     * Wed Apr 12 2017 Radek Vykydal <rvykydal@redhat.com> - 21.48.22.109-1
740     - Update 64bit grub2 support to reflect packages as they actually landed
741     (pjones)
742     Related: rhbz#1310779
743     - Fix potential bugs reported by Pylint 1.6 (mkolman)
744     Related: rhbz#1440190
745     - Fix unused variables and imports (mkolman)
746     Related: rhbz#1440190
747     - Disable Pylint false positives (mkolman)
748     Related: rhbz#1440190
749     - Fix Pylint LoggingChecker usage (mkolman)
750     Resolves: rhbz#1440190
751     - Call subprocess.Popen with absolute path to a binary (rvykydal)
752     Resolves: rhbz#1411407
753    
754     * Mon Apr 10 2017 Radek Vykydal <rvykydal@redhat.com> - 21.48.22.108-1
755     - Gtk: Fix css selectors. (vponcova)
756     Resolves: rhbz#1439766
757     - Gtk: Set CSS names on all of the anaconda classes. (dshea)
758     Resolves: rhbz#1439766
759     - Gtk: Fix deprecated pseudo-classes. (vponcova)
760     Resolves: rhbz#1433943
761     - Gtk: Fix warnings in anaconda widgets. (dshea)
762     Resolves: rhbz#1433943
763     - Gtk: Calculate the preferred size of the image. (vponcova)
764     Resolves: rhbz#1433943
765    
766     * Tue Apr 04 2017 Radek Vykydal <rvykydal@redhat.com> - 21.48.22.107-1
767     - Gtk: Add gi.require_version to specify versions. (vponcova)
768     Resolves: rhbz#1433943
769     - Use the function we already have for applying disk selection (rvykydal)
770     Related: rhbz#1412022
771     - Ignore disks labeled OEMDRV (rvykydal)
772     Resolves: rhbz#1412022
773    
774     * Mon Apr 03 2017 Radek Vykydal <rvykydal@redhat.com> - 21.48.22.106-1
775     - Pylint fixes (rvykydal)
776     Related: rhbz#1429576
777     - Make 64-bit kernel on 32-bit firmware work for x86 efi machines (pjones)
778     Resolves: rhbz#1310779
779    
780     * Wed Mar 29 2017 Radek Vykydal <rvykydal@redhat.com> - 21.48.22.105-1
781     - gui: show supported locales on Atomic Host installs (jlebon)
782     Resolves: rhbz#1429576
783     - Specify unit for reserved space in VG (vpodzime)
784     Resolves: rhbz#1260887
785     - Add support for --chunksize raid kickstart option (vtrefny)
786     Resolves: rhbz#1332316
787    
788     * Thu Mar 23 2017 Radek Vykydal <rvykydal@redhat.com> - 21.48.22.104-1
789     - util: Add script to capture logs (riehecky)
790     Resolves: rhbz#1431313
791    
792     * Mon Mar 20 2017 Radek Vykydal <rvykydal@redhat.com> - 21.48.22.103-1
793     - network tui: fix changing ipv4 config from static to dhcp (rvykydal)
794     Resolves: rhbz#1432886
795    
796     * Thu Mar 16 2017 Radek Vykydal <rvykydal@redhat.com> - 21.48.22.102-1
797     - Add support for kickstart %%onerror scripts (clumens)
798     Resolves: rhbz#1412538
799     - Fix partial kickstart software selection in GUI (jkonecny)
800     Related: rhbz#1404158
801     - Show the network spoke in Initial Setup TUI (mkolman)
802     Resolves: rhbz#1302165
803     - yum: Always release payload and catch raised exceptions. (vponcova)
804     Related: rhbz#979307
805     - tui: Treat dependency errors as errors in the software spoke (vponcova)
806     Resolves: rhbz#979307
807     - tui: Properly initialize the software spoke. (vponcova)
808     Related: rhbz#1371229
809     - Propagate firstboot --disable to Screen Access Manager (mkolman)
810     Related: rhbz#1422867
811     - Use Screen Access Manager (mkolman)
812     Related: rhbz#1422867
813     - Add screen entry/exit callbacks (mkolman)
814     Related: rhbz#1422867
815     - Add screen access manager (mkolman)
816     Resolves: rhbz#1422867
817     - Removed unused code in the Software spoke (jkonecny)
818     Related: rhbz#1404158
819     - Fix selection logic in Software spoke (jkonecny)
820     Resolves: rhbz#1404158
821     - Support --nohome option in the autopartitioning (vponcova)
822     Resolves: rhbz#663099
823     - tui: Remember the custom software selection (vponcova)
824     Resolves: rhbz#1371229
825    
826     * Mon Mar 13 2017 Radek Vykydal <rvykydal@redhat.com> - 21.48.22.101-1
827     - Mock can now be set more easily by CI (jkonecny)
828     Resolves: rhbz#1430728
829    
830     * Mon Mar 06 2017 Radek Vykydal <rvykydal@redhat.com> - 21.48.22.100-1
831     - Fix Driver Disc documentation (jkonecny)
832     Related: rhbz#1377233
833     - Support DD rpm loading from local disk device (jkonecny)
834     Resolves: rhbz#1377233
835     - Fix a Pylint warning (mkolman)
836     Related: rhbz#1425760
837     - Remove redundant help content generation code (mkolman)
838     Resolves: rhbz#1428787
839     - network: create dracut arguments for iSCSI root accessed via vlan (rvykydal)
840     Resolves: rhbz#1374003
841     - Add support for RHVH custom storage checking (vponcova)
842     Related: rhbz#1412151
843     - Enable the install class to customize the storage checking (vponcova)
844     Resolves: rhbz#1412151
845     - Replace sanity check with more advanced storage checker (vponcova)
846     Related: rhbz#1412151
847     - Rename StorageChecker to StorageCheckHandler (vponcova)
848     Related: rhbz#1412151
849     - Perform recursive copying of driver disk RPM repo contents (esyr)
850     Resolves: rhbz#1425760
851     - Fix a typo in an error message (esyr)
852     Related: rhbz#1425760
853     - Don't block gui during dasd formating (vponcova)
854     Resolves: rhbz#1335465
855     - rhev: add /home /tmp /var/log /var/log/audit (dougsland)
856     Resolves: rhbz#1422952
857     - Increase verbosity of lvmdump in pre logging script (jkonecny)
858     Related: rhbz#1255659
859    
860     * Mon Feb 27 2017 Radek Vykydal <rvykydal@redhat.com> - 21.48.22.99-1
861     - Improved password quality checking (mkolman)
862     Resolves: rhbz#1380277
863     Resolves: rhbz#1383718
864     Resolves: rhbz#1356975
865     - Use correct default password quality value (mkolman)
866     Related: rhbz#1380277
867     Related: rhbz#1383718
868     - Use initialization controller for spoke initialization (mkolman)
869     Related: rhbz#1380224
870     - Add module initialization controller (mkolman)
871     Resolves: rhbz#1380224
872     - Add the synchronized decorator (mkolman)
873     Related: rhbz#1380224
874     - Add a signal/slot implementation (mkolman)
875     Related: rhbz#1380224
876    
877     * Mon Feb 20 2017 Radek Vykydal <rvykydal@redhat.com> - 21.48.22.98-1
878     - Lock empty root password during kickstart installation (mkolman)
879     Resolves: rhbz#1383656
880     - Enable multiple inst.stage2 urls (vponcova)
881     Resolves: rhbz#1391724
882     - Enable multiple inst.ks urls (vponcova)
883     Resolves: rhbz#1391724
884     - tui: AutoPartSpoke should not be discovered by a hub (vponcova)
885     Related: rhbz#1380767
886     - Enable to define the autopart type in an install class (vponcova)
887     Resolves: rhbz#1380767
888     - Always set the default partitioning (vponcova)
889     Resolves: rhbz#1380767
890    
891     * Mon Feb 13 2017 Radek Vykydal <rvykydal@redhat.com> - 21.48.22.97-1
892     - Add inst.waitfornet option (rvykydal)
893     Resolves: rhbz#1315160
894     - Add support for IPoIB in tui (rvykydal)
895     Resolves: rhbz#1366935
896    
897     * Tue Feb 07 2017 Radek Vykydal <rvykydal@redhat.com> - 21.48.22.96-1
898     - Add unit test for RepoMDMetaHash object (jkonecny)
899     Related: rhbz#1373449
900     - Make the comments in payload and yumpayload consistent (jkonecny)
901     Related: rhbz#1373449
902     - Fix Anaconda forces payload restart when network (not)change (jkonecny)
903     Resolves: rhbz#1358778
904     Resolves: rhbz#1373449
905     - network: index team slave connection names starting with 1 (rvykydal)
906     Resolves: rhbz#1401403
907     - network: fix --noipv4 via %%pre (rvykydal)
908     Resolves: rhbz#1418289
909    
910     * Thu Feb 02 2017 Radek Vykydal <rvykydal@redhat.com> - 21.48.22.95-1
911     - Close connections to the yum database (vponcova)
912     Resolves: rhbz#1362427
913     - network: fix --activate for bridge slaves configured via %%pre ks (rvykydal)
914     Resolves: rhbz#1416655
915     - network: activate bridge for first network command in ks via %%pre (rvykydal)
916     Resolves: rhbz#1416655
917     - network: unify slave connection names for ks %%pre with ks and gui (rvykydal)
918     Resolves: rhbz#1416655
919     - network: respect --activate value for bridge from kickstart (rvykydal)
920     Resolves: rhbz#1416687
921    
922     * Mon Jan 30 2017 Radek Vykydal <rvykydal@redhat.com> - 21.48.22.94-1
923     - network: bind slave connections to DEVICE, not HWADDR (rvykydal)
924     Related: rhbz#1373360
925     - Catch race-condition error reading from in-memory connection being removed
926     (rvykydal)
927     Related: rhbz#1373360
928     - Allow setting up bridge for fetching isntaller image from kickstart
929     (rvykydal)
930     Resolves: rhbz#1373360
931    
932     * Mon Sep 26 2016 Samantha N. Bueno <sbueno+anaconda@redhat.com> - 21.48.22.93-1
933     - Accept any non-empty password in non-strict mode (mkolman)
934     Resolves: rhbz#1379323
935     - Disable the potfile check on the password quality tests (mkolman)
936     Related: rhbz#1365112
937     Related: rhbz#1365032
938     - Fix two trivial typos in the password checking code (mkolman)
939     Related: rhbz#1365112
940     Related: rhbz#1365032
941     - Tweak lambda use in Dracut test (jkonecny)
942     Related: rhbz#1101653
943     - Add Dracut test for reloading mod dependencies (jkonecny)
944     Related: rhbz#1101653
945    
946     * Tue Sep 20 2016 Samantha N. Bueno <sbueno+anaconda@redhat.com> - 21.48.22.92-1
947     - Check /var/tmp directory before creating it (rvykydal)
948     Resolves: rhbz#1377761
949    
950     * Thu Sep 15 2016 Samantha N. Bueno <sbueno+anaconda@redhat.com> - 21.48.22.91-1
951     - Fix password length in the password policy (mkolman)
952     Related: rhbz#1365112
953     Related: rhbz#1365032
954     - network: avoid registering GTypes from multiple threads (lkundrak)
955     Resolves: rhbz#1366271
956     - Fix traceback when payload have None as url (jkonecny)
957     Resolves: rhbz#1371494
958     - Add new Dracut test and fix another ones (jkonecny)
959     Related: rhbz#1101653
960     - Fix bug when we add set to list (jkonecny)
961     Related: rhbz#1101653
962     - Add new helper script files to build system (jkonecny)
963     Related: rhbz#1101653
964     - Add new helper scripts to the README-dd documentation (jkonecny)
965     Related: rhbz#1101653
966     - Fix driver unload is disabling network settings (jkonecny)
967     Related: rhbz#1101653
968    
969     * Mon Sep 12 2016 Samantha N. Bueno <sbueno+anaconda@redhat.com> - 21.48.22.90-1
970     - rhv: Adding rhv for installclasses (dougsland)
971     Resolves: rhbz#1337595
972    
973     * Mon Sep 12 2016 Samantha N. Bueno <sbueno+anaconda@redhat.com> - 21.48.22.89-1
974     - Default policy should not allow empty passwords (mkolman)
975     Related: rhbz#1365112
976     Related: rhbz#1365032
977     - Add unit tests for password quality checking (mkolman)
978     Related: rhbz#1365112
979     Related: rhbz#1365032
980     - Fix password quality checking (mkolman)
981     Resolves: rhbz#1365112
982     Resolves: rhbz#1365032
983     - dud: fix multiple inst.dd=http:// instances stalling in dracut (rvykydal)
984     Related: rhbz#1268792
985    
986     * Thu Sep 08 2016 Samantha N. Bueno <sbueno+anaconda@redhat.com> - 21.48.22.88-1
987     - Revert "Show network spoke in the TUI reconfig mode (mkolman)"
988     Resolves: rhbz#1302165
989     - Improved driver disk copying (mkolman)
990     Related: rhbz#1269915
991     - network: adapt to ibft plugin being enabled by default in NM (rvykydal)
992     Resolves: rhbz#1371188
993    
994     * Mon Sep 05 2016 Samantha N. Bueno <sbueno+anaconda@redhat.com> - 21.48.22.87-1
995     - Drop T from cp command flags when copying driver disk RPMs (mkolman)
996     Resolves: rhbz#1269915
997     - network: set onboot correctly for vlan on bond device in ks (rvykydal)
998     Related: rhbz#1234849
999     - network: don't show ibft configured devices in UI (rvykydal)
1000     Resolves: rhbz#1309661
1001     - Translate press-c-to-continue correctly in TUI (mkolman)
1002     Resolves: rhbz#1364539
1003     - network: don't set empty team slave config for NM (rvykydal)
1004     Related: rhbz#1254929
1005    
1006     * Thu Aug 25 2016 Samantha N. Bueno <sbueno+anaconda@redhat.com> - 21.48.22.86-1
1007     - network: don't stumble upon new Device.Statistics NM dbus iface (rvykydal)
1008     Resolves: rhbz#1370099
1009    
1010     * Wed Aug 24 2016 Samantha N. Bueno <sbueno+anaconda@redhat.com> - 21.48.22.85-1
1011     - Check before removing repo specific caches (bcl)
1012     Resolves: rhbz#1369698
1013    
1014     * Tue Aug 23 2016 Samantha N. Bueno <sbueno+anaconda@redhat.com> - 21.48.22.84-1
1015     - Ensure LDL DASDs formatted in text ks. (sbueno+anaconda)
1016     Resolves: rhbz#1259437
1017     - Run cache hack after moving cache to mounted storage (bcl)
1018     Resolves: rhbz#1287438
1019     - Fix reset payload only on network change (jkonecny)
1020     Resolves: rhbz#1364367
1021     - Disable strict password quality checking for partial kickstart installations
1022     (mkolman)
1023     Related: rhbz#1360263
1024     - Fix anaconda-pre.service wasn't properly installed (jkonecny)
1025     Related: rhbz#1255659
1026    
1027     * Thu Aug 11 2016 Samantha N. Bueno <sbueno+anaconda@redhat.com> - 21.48.22.83-1
1028     - Fix PropertyNotFoundError PermHwAddress (jkonecny)
1029     Resolves: rhbz#1364977
1030     - Fix screenshot taking logic (mkolman)
1031     Resolves: rhbz#1327456
1032     - network: don't require gateway for static ipv4 config in TUI (rvykydal)
1033     Resolves: rhbz#1365532
1034    
1035     * Tue Aug 09 2016 Samantha N. Bueno <sbueno+anaconda@redhat.com> - 21.48.22.82-1
1036     - Fix needsNetwork() to test only enabled repositories (jkonecny)
1037     Resolves: rhbz#1361213
1038     Related: rhbz#1358788
1039     - Make sure unformatted DASDs are dasdfmted in ks. (sbueno+anaconda)
1040     Resolves: rhbz#1359865
1041     - Fix architecutre selection for help content (mkolman)
1042     Related: rhbz#1260880
1043     - Fix needsNetwork testing only additional repositories (jkonecny)
1044     Related: rhbz#1358788
1045     - Fix retry to download local treeinfo file (jkonecny)
1046     Related: rhbz#1270354
1047     - Rename function for better consistency (rvykydal)
1048     Related: rhbz#1259284
1049     - Update error message for consistency (rvykydal)
1050     Related: rhbz#1259284
1051     - Add more specific username check messages also to gui (rvykydal)
1052     Related: rhbz#1259284
1053     Resolves: rhbz#1360334
1054     - Fix restart payload only when repo needs network (jkonecny)
1055     Resolves: rhbz#1358788
1056    
1057     * Wed Jul 27 2016 <> - 21.48.22.81-1
1058     - network: don't activate bond/team devices regardless of --activate (rvykydal)
1059     Resolves: rhbz#1358795
1060     - iscsi: fix getting iscsi target iface of bound target (rvykydal)
1061     Resolves: rhbz#1359739
1062     - Clarify a nosave related log message (mkolman)
1063     Related: rhbz#1285519
1064     - network: fix ksdata generating for for non-active virtual devices (rvykydal)
1065     Related: rhbz#1321288
1066     - network: update kickstart data also with bond bridge slaves (rvykydal)
1067     Related: rhbz#1321288
1068     - network: add support for bridge bond slaves (rvykydal)
1069     Resolves: rhbz#1321288
1070     - Fix bootDrive driveorder fallback (jkonecny)
1071     Related: rhbz#1355795
1072     - Fix bootloader when re-using existing /boot part (jkonecny)
1073     Related: rhbz#1355795
1074     - fix style guide test false positive on username variable (rvykydal)
1075     Related: rhbz#1350375
1076     - Store logs before anaconda starts (japokorn)
1077     Resolves: rhbz#1255659
1078     - DD can now replace existing drivers (japokorn)
1079     Related: rhbz#1101653
1080     - tui: use functions instead of fake REs for checking values (rvykydal)
1081     Related: rhbz#1350375
1082     - tui: get proper index of entry we are handling in input (rvykydal)
1083     Related: rhbz#1331054
1084     - tui: fix user name validity checking (rvykydal)
1085     Related: rhbz#1259284
1086     Resolves: rhbz#1350375
1087     - Change bootloader boot drive fallback (jkonecny)
1088     Resolves: rhbz#1355795
1089     - Make it possible to disable sshd service from running. (sbueno+anaconda)
1090     Resolves: rhbz#1262707
1091     - Attempt to unload modules updated by a driver disk (dshea)
1092     Resolves: rhbz#1101653
1093     - Fix the processing of device nodes as driver disks (dshea)
1094     Related: rhbz#1269915
1095    
1096     * Fri Jul 08 2016 Brian C. Lane <bcl@redhat.com> - 21.48.22.80-1
1097     - Allow kickstart users to ignore the free space error (dshea)
1098     Resolves: rhbz#1287308
1099     - Fix dhcpclass to work both via kickstart and the boot cmdline. (clumens)
1100     Resolves: rhbz#1293051
1101     - Add support for device specification variants (mkolman)
1102     Resolves: rhbz#1200833
1103     - Add NTP server configuration to the TUI (mkolman)
1104     Resolves: rhbz#1269399
1105     - Move the NTP server checking constants to constants.py (mkolman)
1106     Related: rhbz#1269399
1107     - Use a constant for the NTP check thread name prefix (mkolman)
1108     Related: rhbz#1269399
1109    
1110     * Fri Jun 24 2016 Brian C. Lane <bcl@redhat.com> - 21.48.22.79-1
1111     - Fix adding new VG in Custom spoke can't be applied (jkonecny)
1112     Resolves: rhbz#1263715
1113     - Fix pylint errors in Timezone. (dshea)
1114     Related: rhbz#1312135
1115     - hostname: don't set installer env hostname to localhost.localdomain
1116     (rvykydal)
1117     Related: rhbz#1290858
1118     - Add the nosave option to the boot option docs file (mkolman)
1119     Related: rhbz#1285519
1120    
1121     * Fri Jun 17 2016 Brian C. Lane <bcl@redhat.com> - 21.48.22.78-1
1122     - Use the RHEL 7 timezone kickstart command version (mkolman)
1123     Resolves: rhbz#1312135
1124     - Use the signal handlers to set initial widget sensitivies (dshea)
1125     Resolves: rhbz#1259742
1126     - Fix the name sensitivity in the custom spoke. (dshea)
1127     Resolves: rhbz#1316269
1128     - Require network for network-based driver disks (dshea)
1129     Resolves: rhbz#1261024
1130    
1131     * Fri Jun 10 2016 Brian C. Lane <bcl@redhat.com> - 21.48.22.77-1
1132     - Add wordwrap to text mode and use it by default (rvykydal)
1133     Resolves: rhbz#1267881
1134     - Display storage errors that cause no disks to be selected (bcl)
1135     Related: rhbz#1340240
1136     - Overwrite network files when using ks liveimg (bcl)
1137     Resolves: rhbz#1342639
1138    
1139     * Wed Jun 08 2016 Brian C. Lane <bcl@redhat.com> - 21.48.22.76-1
1140     - Fix a covscan warning about fetch-driver-net (bcl)
1141     Related: rhbz#1269915
1142     - network: handle also ifcfg files of not activated virtual devices (rvykydal)
1143     Resolves: rhbz#1313173
1144     - network: check onboot value in ksdata, not NM connections (rvykydal)
1145     Related: rhbz#1341636
1146     Resolves: rhbz#1313173
1147     - network: do not activate device on kickstart --onboot="yes" (rvykydal)
1148     Resolves: rhbz#1341636
1149     - Use the LUKS device for encrypted swap on RAID (dshea)
1150     Related: rhbz#1302747
1151     - Use the LUKS device for swap in fstab (vpodzime)
1152     Resolves: rhbz#1302747
1153     - Keep the subdir in driver disk update paths (dshea)
1154     Resolves: rhbz#1296306
1155     - Warn about broken keyboard layout switching in VNC (jkonecny)
1156     Resolves: rhbz#1274228
1157     - Make the anaconda-generator exit early outside of the installation
1158     environment (mkolman)
1159     Resolves: rhbz#1289179
1160    
1161     * Fri Jun 03 2016 Brian C. Lane <bcl@redhat.com> - 21.48.22.75-1
1162     - Add a button to refresh the disk list. (dlehman)
1163     Resolves: rhbz#1191305
1164     - Fix some residual issues of dasdfmt in text-mode. (sbueno+anaconda)
1165     Resolves: rhbz#1259437
1166     - Only try to restart payload in the Anaconda environment (mkolman)
1167     Related: rhbz#1270354
1168     - Make current runtime environment identifiers available via flags (mkolman)
1169     Related: rhbz#1270354
1170     - network tui: do not activate device when setting its onboot value (rvykydal)
1171     Resolves: rhbz#1261864
1172     - network tui: edit persistent configuration, not active connection (rvykydal)
1173     Related: rhbz#1261864
1174     - network: add support for --no-activate kickstart opton (rvykydal)
1175     Resolves: rhbz#1277975
1176     - More descriptive message on invalid username (kvalek)
1177     Resolves: rhbz#1259284
1178     - Don't mark an empty string for translation. (clumens)
1179     Related: rhbz#1255094
1180     - Update the disk summary on Ctrl-A (dshea)
1181     Resolves: rhbz#1264958
1182     - Added PROGRESS_REPORT for retry messages (kvalek)
1183     Resolves: rhbz#1255094
1184     - Handle unsupported disklabels. (dlehman)
1185     Related: rhbz#1266199
1186     Related: rhbz#1294081
1187     - network: fix filtering of libvirt devices (check for None values) (rvykydal)
1188     Related: rhbz#1298444
1189     - NFS DDs installation now works correctly (japokorn)
1190     Resolves: rhbz#1269915
1191    
1192     * Fri May 27 2016 Brian C. Lane <bcl@redhat.com> - 21.48.22.74-1
1193     - Print an error when the kickstart file is missing (bcl)
1194     Resolves: rhbz#1297380
1195     - Adapt the pwpolicy defaults to the old behavior (vpodzime)
1196     Related: rhbz#1240303
1197     - Ignore addon and anaconda sections in handle-sshpw (bcl)
1198     Related: rhbz#1240303
1199     - Ignore %%anaconda section in parse-kickstart (bcl)
1200     Related: rhbz#1240303
1201     - Add documentation on %%anaconda kickstart command (bcl)
1202     Related: rhbz#1240303
1203     - TUI pwpolicy setup was supposed to be in __init__ not refresh (bcl)
1204     Related: rhbz#1240303
1205     - Fix pylint/translation issues from the pwpolicy patches. (clumens)
1206     Related: rhbz#1240303
1207     - Implement %%anaconda kickstart section for pwpolicy (bcl)
1208     Resolves: rhbz#1240303
1209     - Add pwpolicy support to TUI interface (bcl)
1210     Related: rhbz#1240303
1211     - Add pwpolicy for the LUKS passphrase dialog. (bcl)
1212     Related: rhbz#1240303
1213     - Add pwpolicy for the user spoke. (bcl)
1214     Related: rhbz#1240303
1215     - Use pwpolicy for the root password spoke. (bcl)
1216     Related: rhbz#1240303
1217     - hostname: add tooltip to Apply button (rvykydal)
1218     Related: rhbz#1290858
1219     - hostname: fix accelerator collision (rvykydal)
1220     Related: rhbz#1290858
1221     - hostname: don't set hostname in initrafms of target system (rvykydal)
1222     Related: rhbz#1290858
1223     - hostname: set current hostname from target system hostname on demand
1224     (rvykydal)
1225     Related: rhbz#1290858
1226     - hostname: suggest current hostname for storage containers (rvykydal)
1227     Related: rhbz#1290858
1228     - hostname: don't set target system static hostname to current hostname
1229     (rvykydal)
1230     Resolves: rhbz#1290858
1231    
1232     * Wed May 25 2016 Brian C. Lane <bcl@redhat.com> - 21.48.22.73-1
1233     - network: don't crash on devices with zero MAC address (rvykydal)
1234     Resolves: rhbz#1334632
1235     - network: fix regression in network tui device configuration (rvykydal)
1236     Resolves: rhbz#1338620
1237     - Fix TUI ErrorDialog processing (bcl)
1238     Resolves: rhbz#1337427
1239     - Fix a pylint error in the source switch handler mixin (mkolman)
1240     Related: rhbz#1275771
1241     - Don't crash when selecting the same hdd ISO again (mkolman)
1242     Resolves: rhbz#1275771
1243     - Protect extended partition when ISO file is on logical partition (vtrefny)
1244     Resolves: rhbz#1255237
1245     - Fix error handling for s390 bootloader errors (sbueno+anaconda)
1246     Resolves: rhbz#1260934
1247     - Move yum.cache to disk after partitioning (bcl)
1248     Resolves: rhbz#1287438
1249    
1250     * Fri May 13 2016 Brian C. Lane <bcl@redhat.com> - 21.48.22.72-1
1251     - Lower required squashfs ram to 350M (bcl)
1252     Resolves: rhbz#1333113
1253     - Add epoch for anaconda-user-help & bump version (mkolman)
1254     Related: rhbz#1275285
1255     - Specify string format arguments as logging function parameters (mkolman)
1256     Related: rhbz#1235726
1257    
1258     * Wed May 11 2016 Brian C. Lane <bcl@redhat.com> - 21.48.22.71-1
1259     - Do not override StorageChecker.errors in StorageSpoke (vtrefny)
1260     Resolves: rhbz#1269195
1261     - Add single language mode (mkolman)
1262     Resolves: rhbz#1235726
1263     - Move default X keyboard setting out of the Welcome spoke (mkolman)
1264     Related: rhbz#1235726
1265     - bootloader: Use shim on Aarch64. (pjones)
1266     Resolves: rhbz#1256942
1267     - Fix bad indentation (rvykydal)
1268     Related: rhbz#1265593
1269     - network: don't show libvirt virtual devices (rvykydal)
1270     Related: rhbz#1298444
1271     - network: don't crash when adding device without connection to list (rvykydal)
1272     Related: rhbz#1265593
1273     - Use a different ipmi command to log events. (clumens)
1274     Resolves: rhbz#1268195
1275     - Add missing glib schema dependencies (dshea)
1276     Related: rhbz#1324889
1277     - Compile glib schema overrides with --strict. (dshea)
1278     Related: rhbz#1324889
1279    
1280     * Fri May 06 2016 Brian C. Lane <bcl@redhat.com> - 21.48.22.70-1
1281     - Don't join two absolute paths (mkolman)
1282     Related: rhbz#1249598
1283     - Switch to the new Initial Setup unit name (mkolman)
1284     Related: rhbz#1249598
1285     - Don't crash when taking a screenshot on the hub (mkolman)
1286     Resolves: rhbz#1327456
1287     - network: validate netmask in tui (rvykydal)
1288     Resolves: rhbz#1331054
1289    
1290     * Fri Apr 29 2016 Brian C. Lane <bcl@redhat.com> - 21.48.22.69-1
1291     - Check minimal memory requirements properly (jstodola)
1292     Resolves: rhbz#1267673
1293     - Check that cache PVs (if any) are in the VG the LV belongs to (vpodzime)
1294     Resolves: rhbz#1263258
1295     - Move settings_changed from NCB to Network Spoke (jkonecny)
1296     Related: rhbz#1270354
1297     - Changes in network state revalidate sources rhbz#1270354 (riehecky)
1298     Resolves: rhbz#1270354
1299    
1300     * Wed Apr 27 2016 Brian C. Lane <bcl@redhat.com> - 21.48.22.68-1
1301     - Update storage snapshot after running dasdfmt. (sbueno+anaconda)
1302     Resolves: rhbz#1266151
1303     - Add access to the payload from addons (jkonecny)
1304     Resolves: rhbz#1288636
1305     - Update the on-disk snapshot of storage when adv. disks are added (vpodzime)
1306     Resolves: rhbz#1267944
1307    
1308     * Thu Apr 21 2016 Brian C. Lane <bcl@redhat.com> - 21.48.22.67-1
1309     - Combine formatting of LDL and unformatted DASDs. (sbueno+anaconda)
1310     Resolves: rhbz#1316088
1311     - Move metacity settings into anaconda. (dshea)
1312     Resolves: rhbz#1324889
1313    
1314     * Fri Apr 15 2016 Brian C. Lane <bcl@redhat.com> - 21.48.22.66-1
1315     - Check software selection in tui kickstart (bcl)
1316     Resolves: rhbz#1320436
1317     - Run the checkSoftwareSelection even when no environment is selected (bcl)
1318     Resolves: rhbz#1320436
1319     - Stop kickstart when space check fails (bcl)
1320     Resolves: rhbz#1320436
1321     - Fix problem of DASDs not being formatted in text ks. (sbueno+anaconda)
1322     Resolves: rhbz#1259437
1323    
1324     * Thu Apr 14 2016 Brian C. Lane <bcl@redhat.com> - 21.48.22.65-1
1325     - Move the pykickstart version test into a different subdirectory. (clumens)
1326     Resolves: rhbz#1263367
1327     - Show network spoke in the TUI reconfig mode (mkolman)
1328     Resolves: rhbz#1302165
1329     - iscsi: don't generate kickstart iscsi commands for offload devices (rvykydal)
1330     Related: rhbz#1252879
1331     - iscsi: allow installing bootloader on offload iscsi disks (qla4xxx)
1332     (rvykydal)
1333     Resolves: rhbz#1325134
1334     - Fix iSCSI kickstart options aren't generated (jkonecny)
1335     Resolves: rhbz#1252879
1336     - Fix adding offload iSCSI devices (vtrefny)
1337     Resolves: rhbz#1255280
1338    
1339     * Fri Apr 08 2016 Brian C. Lane <bcl@redhat.com> - 21.48.22.64-1
1340     - Exclude software raid block devices from list-harddrives output (mkolman)
1341     Resolves: rhbz#1311512
1342    
1343     * Tue Apr 05 2016 Brian C. Lane <bcl@redhat.com> - 21.48.22.63-1
1344     - network: don't set 803-3-ethernet.name setting (rvykydal)
1345     Resolves: rhbz#1323589
1346     - Add retry when downloading .treeinfo (jkonecny)
1347     Resolves: rhbz#1292613
1348     - Make it possible to skip saving of kickstarts and logs (mkolman)
1349     Resolves: rhbz#1285519
1350     - Add a function for empty file creation (mkolman)
1351     Related: rhbz#1285519
1352     - Run actions for argparse arguments (mkolman)
1353     Related: rhbz#1285519
1354    
1355     * Fri Apr 01 2016 Brian C. Lane <bcl@redhat.com> - 21.48.22.62-1
1356     - Reset invalid disk selection before proceeding. (dlehman)
1357     Resolves: rhbz#1265330
1358     - Fix bad sensitivity on boxes in source spoke (jkonecny)
1359     Resolves: rhbz#1262833
1360     - Fix only one address is shown in anaconda (jkonecny)
1361     Resolves: rhbz#1264400
1362     - network: copy static routes configured in installer to system (rvykydal)
1363     Resolves: rhbz#1255801
1364     - network: fix kickstart --noipv4 option in %%pre section (rvykydal)
1365     Related: rhbz#1291333
1366     - network: fix kickstart --noipv4 option (rvykydal)
1367     Resolves: rhbz#1291333
1368    
1369     * Thu Mar 24 2016 Brian C. Lane <bcl@redhat.com> - 21.48.22.61-1
1370     - Fix crash when new device appear in Welcome screen (jkonecny)
1371     Resolves: rhbz#1216926
1372     - Add reason when logging invalid repository (jkonecny)
1373     Resolves: rhbz#1240379
1374     - network: fix vlan over bond in kickstart (rvykydal)
1375     Resolves: rhbz#1234849
1376    
1377     * Fri Mar 18 2016 Brian C. Lane <bcl@redhat.com> - 21.48.22.60-1
1378     - Remove unused import in storage_utils (sbueno+anaconda)
1379     Related: rhbz#1268025
1380     - Remove the last instance of singlePV (sbueno+anaconda)
1381     Resolves: rhbz#1268025
1382     - Remove duplicate informational message from rescue mode. (sbueno+anaconda)
1383     Resolves: rhbz#1249082
1384     - If doing dirinstall on s390x, don't prompt to login via ssh to begin install.
1385     (sbueno+anaconda)
1386     Resolves: rhbz#1269207
1387     - Fix a problem introduced by a cherry-pick (dshea)
1388     Resolves: rhbz#1317558
1389     Related: rhbz#1274855
1390     - Fix duplicate network settings in dracut (jkonecny)
1391     Related: rhbz#1293539
1392     - Fix create device with bad name when parsing KS (jkonecny)
1393     Resolves: rhbz#1293539
1394     - network: don't traceback when trying to turn off misconfigured team
1395     connection (rvykydal)
1396     Resolves: rhbz#1263971
1397     - network: don't set NM_CONTROLLED=no for root on SAN (rvykydal)
1398     Resolves: rhbz#1273323
1399     - Use a lock for repoStore access (bcl)
1400     Resolves: rhbz#1315414
1401     - network: use NAME to find ifcfg on s390 with net.ifnames=0 (rvykydal)
1402     Resolves: rhbz#1249750
1403     - fix multiple inst.dd=<path> args (rhbz#1268792) (wwoods)
1404     Resolves: rhbz#1268792
1405     - network: fix configuring team in kickstart pre (rvykydal)
1406     Resolves: rhbz#1254929
1407     - network: Don't set --device link default for hostname only network cmd
1408     (rvykydal)
1409     Resolves: rhbz#1272274
1410     - Make the No Space dialog look less terrible. (clumens)
1411     Resolves: rhbz#1264328
1412    
1413     * Thu Mar 10 2016 Brian C. Lane <bcl@redhat.com> - 21.48.22.59-1
1414     - Fix a DBus InvalidProperty handling (jkonecny)
1415     Resolves: rhbz#1315843
1416     - Fix a bad usage of execWithRedirect (dshea)
1417     Resolves: rhbz#1270319
1418     - Use an icon that exists in Adwaita for the dasd confirmation (dshea)
1419     Related: rhbz#1259016
1420     - Translate the help button. (dshea)
1421     Resolves: rhbz#1314451
1422     - Translate the required space labes in resize.py (dshea)
1423     Resolves: rhbz#1314451
1424     - Increase yum debug logging level from 3 to 6 (jkonecny)
1425     Resolves: rhbz#1254368
1426    
1427     * Fri Mar 04 2016 Brian C. Lane <bcl@redhat.com> - 21.48.22.58-1
1428     - Add device id to dasdfmt screen. (sbueno+anaconda)
1429     Resolves: rhbz#1269174
1430     - Unify displayed columns in custom spoke dialogs. (sbueno+anaconda)
1431     Resolves: rhbz#1289577
1432     - Show some confirmation to users if adding a DASD was successful.
1433     (sbueno+anaconda)
1434     Resolves: rhbz#1259016
1435     - Fix dasdfmt during graphical kickstart. (sbueno+anaconda)
1436     Resolves: rhbz#1269863
1437     - Improve password salt creation (bcl)
1438     Resolves: rhbz#1229474
1439     - Display a fatal error if unable to encrypt a password. (dshea)
1440     Related: rhbz#1229474
1441     - NTP should have better behavior (jkonecny)
1442     Resolves: rhbz#1260725
1443    
1444     * Tue Mar 01 2016 Brian C. Lane <bcl@redhat.com> - 21.48.22.57-1
1445     - Make sure pluginconf.d exists (bcl)
1446     Resolves: rhbz#1271766
1447     - Check to see if DD repo is already in addOn list (bcl)
1448     Resolves: rhbz#1268357
1449     - Add --sshkey to kickstart sshpw command (bcl)
1450     Resolves: rhbz#1240410
1451     - Add sshkey kickstart command (bcl)
1452     Resolves: rhbz#1311755
1453     - Fix nfs source crash when options change (bcl)
1454     Resolves: rhbz#1264071
1455     - Fix pre-install script execution (bcl)
1456     Related: rhbz#1311184
1457     - Add kickstart %%pre-install section support (bcl)
1458     Resolves: rhbz#1311184
1459     - Fix a race between a window continuing and the next starting (dshea)
1460     Resolves: rhbz#1255858
1461     - Don't process continue-clicked events for windows that aren't shown.
1462     (clumens)
1463     Related: rhbz#1255858
1464     - Generate resources.h before compiling widgets-common.c (dshea)
1465     Related: rhbz#1243929
1466     - Use CSS to style the internal widgets. (dshea)
1467     Resolves: rhbz#1243929
1468     - Lookup IPv6 address without brackets (bcl)
1469     Resolves: rhbz#1267872
1470     - Copy rhsm logs to target system (bcl)
1471     Resolves: rhbz#1130268
1472     - Add specific error string to TUI user dialog (bcl)
1473     Resolves: rhbz#1248421
1474     - Make EditTUIDialog error generic (bcl)
1475     Related: rhbz#1248421
1476     - Don't clear the _currentIsoFile if another iso was selected (bcl)
1477     Related: rhbz#1274855
1478     - Fix problems with the hdiso method (clumens)
1479     Resolves: rhbz#1274855
1480     - Always quote values in ifcfg- files (bcl)
1481     Resolves: rhbz#1279131
1482     - Include original kickstart in /root/original-ks.cfg (bcl)
1483     Resolves: rhbz#1227939
1484     - Manually set clock shifts on UI idle (rmarshall)
1485     Resolves: rhbz#1251044
1486     - Import iutil earlier so we can use ipmi_report from check_for_ssh. (clumens)
1487     Resolves: rhbz#1267658
1488     - In tui cmdline mode skip showError and log message (bcl)
1489     Resolves: rhbz#1280371
1490     - Fix a typo in the hardware error message. (clumens)
1491     Resolves: rhbz#1284165
1492     - Make reclaim work with small screens and big labels (dshea)
1493     Resolves: rhbz#1262778
1494     - Use GtkResponseType values in the iso chooser dialog (dshea)
1495     Resolves: rhbz#1265060
1496    
1497 unnilennium 1.1 * Thu Oct 29 2015 Brian C. Lane <bcl@redhat.com> - 21.48.22.56-1
1498     - Ignore interfaces with invalid VLAN IDs. (dshea)
1499     Resolves: rhbz#1274893
1500    
1501     * Fri Oct 09 2015 Brian C. Lane <bcl@redhat.com> - 21.48.22.55-1
1502     - network: create ifcfg files in tui if needed (rvykydal)
1503     Resolves: rhbz#1268155
1504     - Do not limit ONBOOT default setting to url and nfs installation methods
1505     (rvykydal)
1506     Resolves: rhbz#1269264
1507    
1508     * Wed Oct 07 2015 Brian C. Lane <bcl@redhat.com> - 21.48.22.54-1
1509     - ibft: fix setting dracut boot args for static ibft nic configuration
1510     (rvykydal)
1511     Resolves: rhbz#1267526
1512     - dracut: accept inst.dd=[file:]/dd.iso (wwoods)
1513     Resolves: rhbz#1268792
1514     - Fix issues with the date&time not being updated on timezone changes
1515     (vpodzime)
1516     Resolves: rhbz#1267450
1517    
1518     * Tue Sep 29 2015 Brian C. Lane <bcl@redhat.com> - 21.48.22.53-1
1519     - Use otps.display_mode during early startup (mkolman)
1520     Resolves: rhbz#1267140
1521    
1522     * Mon Sep 28 2015 Brian C. Lane <bcl@redhat.com> - 21.48.22.52-1
1523     - Mount stage2 cdrom after running driver-updates (bcl)
1524     Resolves: rhbz#1266478
1525    
1526     * Fri Sep 25 2015 Brian C. Lane <bcl@redhat.com> - 21.48.22.51-1
1527     - Pull in new translations
1528     Related: rhbz#1047457
1529    
1530     * Wed Sep 23 2015 Brian C. Lane <bcl@redhat.com> - 21.48.22.50-1
1531     - Fix a pylint problem with the ostree patch. (clumens)
1532     Related: rhbz#1253527
1533     - Update storage config after running dasdfmt. (sbueno+anaconda)
1534     Resolves: rhbz#1264411
1535     - rpmostreepayload: Forcibly unmount everything in sysroot (walters)
1536     Resolves: rhbz#1253527
1537    
1538     * Tue Sep 22 2015 Brian C. Lane <bcl@redhat.com> - 21.48.22.49-1
1539     - Use correct installclass for RHEL Atomic Host (rvykydal)
1540     Resolves: rhbz#1265213
1541     - Catch blkid failure in driver-updates (bcl)
1542     Resolves: rhbz#1262963
1543     - Maximize anaconda instead of running fullscreen (dshea)
1544     Related: rhbz#1231856
1545     - Do not display markup in showDetailedError. (dshea)
1546     Resolves: rhbz#1263963
1547    
1548     * Fri Sep 18 2015 Brian C. Lane <bcl@redhat.com> - 21.48.22.48-1
1549     - Skip setting up env and groups in software spoke for ks (bcl)
1550     Resolves: rhbz#1263493
1551    
1552     * Tue Sep 15 2015 Brian C. Lane <bcl@redhat.com> - 21.48.22.47-1
1553     - Show correct status for no %%packages with selected environment (mkolman)
1554     Related: rhbz#1261393
1555     - Keep environment selection when reentering the software spoke (mkolman)
1556     Resolves: rhbz#1261393
1557     - Remove an unused import. (clumens)
1558     Related: rhbz#1253672
1559     - Only show the user spoke if no users are specified in kickstart (mkolman)
1560     Resolves: rhbz#1253672
1561    
1562     * Fri Sep 11 2015 Brian C. Lane <bcl@redhat.com> - 21.48.22.46-1
1563     - Handle driver rpms retrieved via network (bcl)
1564     Resolves: rhbz#1257916
1565     - Use getDiskDescription for disk description strings (bcl)
1566     Resolves: rhbz#1247861
1567     - Add getDiskDescription helper function (bcl)
1568     Related: rhbz#1247861
1569     - Make sure anaconda reads in ks file from OEMDRV device. (sbueno+anaconda)
1570     Resolves: rhbz#1057271
1571     - Try to deal with expected errors from devicetree.populate (vpodzime)
1572     Resolves: rhbz#1257648
1573    
1574     * Thu Sep 10 2015 Brian C. Lane <bcl@redhat.com> - 21.48.22.45-1
1575     - Fix 'cat: /tmp/dd_disk: No such file or directory' (jkonecny)
1576     Resolves: rhbz#1251394
1577    
1578     * Wed Sep 09 2015 Brian C. Lane <bcl@redhat.com> - 21.48.22.44-1
1579     - Fix another bash syntax problem in kickstart-genrules.sh (sbueno+anaconda)
1580     Resolves: rhbz#1057271
1581     - Install all required packages. (dshea)
1582     Resolves: rhbz#1260624
1583    
1584     * Tue Sep 08 2015 Brian C. Lane <bcl@redhat.com> - 21.48.22.43-1
1585     - Quit in askvnc should not reboot image and dirinstall (bcl)
1586     Resolves: rhbz#1255069
1587     - network: assume --device=link as default also for ks on hd (rvykydal)
1588     Related: rhbz#1085310
1589     - Don't try to concatenate a list with a string (mkolman)
1590     Related: rhbz#1252444
1591     - Always show the Network spoke in Initial Setup (mkolman)
1592     Resolves: rhbz#1259801
1593     - Fix hiding curl 404 errors outside debug mode (vtrefny)
1594     Resolves: rhbz#1182776
1595    
1596     * Thu Sep 03 2015 Brian C. Lane <bcl@redhat.com> - 21.48.22.42-1
1597     - Remove a call to execute in storage thread to avoid a threading disaster.
1598     (sbueno+anaconda)
1599     Resolves: rhbz#1245268
1600     - Remove a rogue reference to self.back_clicked. (clumens)
1601     Related: rhbz#1254548
1602     - Fix a typo in service enablement in kickstart.py. (clumens)
1603     Related: rhbz#1252444
1604     - Verify Initial Setup services are present before turning them ON/OFF
1605     (mkolman)
1606     Resolves: rhbz#1252444
1607     - Set both .format's and .originalFormat's passphrase on unlock (vpodzime)
1608     Resolves: rhbz#1255679
1609     - Make the Encrypt checkbox insensitive for encrypted non-BTRFS devices
1610     (vpodzime)
1611     Related: rhbz#1255679
1612     - Make the default screen height yet one line shorter (vpodzime)
1613     Resolves: rhbz#1184378
1614     - Don't crash if the Japanese PC-98 keyboard is selected (mkolman)
1615     Resolves: rhbz#1190589
1616    
1617     * Wed Sep 02 2015 Brian C. Lane <bcl@redhat.com> - 21.48.22.41-1
1618     - Enforce sane disk selections. (dlehman)
1619     Resolves: rhbz#1254548
1620    
1621     * Tue Sep 01 2015 Brian C. Lane <bcl@redhat.com> - 21.48.22.40-1
1622     - Skip OEMDRV if interactive DD is requested (bcl)
1623     Related: rhbz#1254270
1624     - Copy updated driver ko to correct directory (bcl)
1625     Related: rhbz#1254270
1626     - addRepo takes a repo object not a string (bcl)
1627     Related: rhbz#1254270
1628     - Drivers are simply under /run/install/DD-x/ (bcl)
1629     Related: rhbz#1254270
1630     - Fix a bash error in kickstart-genrules.sh (sbueno+anaconda)
1631     Resolves: rhbz#1057271
1632     - Run nm-connection-editor with the --keep-above flag (mkolman)
1633     Resolves: rhbz#1231856
1634    
1635     * Mon Aug 31 2015 Brian C. Lane <bcl@redhat.com> - 21.48.22.39-1
1636     - Disallow /boot on lvm until grub2 fully supports it. (dlehman)
1637     Resolves: rhbz#1252466
1638     - Force an encoding of utf-8 on liveinst installs (dshea)
1639     Resolves: rhbz#1257060
1640     - Ignore zram block devices in the list-harddrives script output (mkolman)
1641     Resolves: rhbz#1247886
1642     Resolves: rhbz#1253184
1643    
1644     * Fri Aug 28 2015 Brian C. Lane <bcl@redhat.com> - 21.48.22.38-1
1645     - Run AnacondaExceptionHandler in cmdline mode (bcl)
1646     Resolves: rhbz#1256385
1647     - anaconda.target: Wants systemd-logind.service (awilliam)
1648     Resolves: rhbz#1257311
1649    
1650     * Wed Aug 26 2015 Brian C. Lane <bcl@redhat.com> - 21.48.22.37-1
1651     - Process excludedGroupList after packages and groups. (clumens)
1652     Resolves: rhbz#1249036
1653     - Fix the help button mnemonic display on spokes (dshea)
1654     Resolves: rhbz#1250918
1655    
1656     * Mon Aug 24 2015 Brian C. Lane <bcl@redhat.com> - 21.48.22.36-1
1657     - Don't write nfs repos to the target system (bcl)
1658     Resolves: rhbz#1246212
1659     - Fix nfs mountpoint removal (bcl)
1660     Related: rhbz#1246212
1661     - Fix the handling of nfs:// URLs. (dshea)
1662     Related: rhbz#1246212
1663     - Start hubs with the buttons insensitive. (dshea)
1664     Resolves: rhbz#1255752
1665     - Move locale environment logic into localization.py (dshea)
1666     Related: rhbz#1198642
1667    
1668     * Mon Aug 17 2015 Brian C. Lane <bcl@redhat.com> - 21.48.22.35-1
1669     - Skip source url checks when network is off (bcl)
1670     Resolves: rhbz#1251130
1671     - Don't set net.device to link if there is no ksdevice (bcl)
1672     Resolves: rhbz#1085310
1673     - Reading carrier while link is down raises IOError (bcl)
1674     Related: rhbz#1085310
1675     - Make sure username entered in TUI if create a user chosen. (sbueno+anaconda)
1676     Resolves: rhbz#1249660
1677    
1678     * Sun Aug 16 2015 Brian C. Lane <bcl@redhat.com> - 21.48.22.34-1
1679     - Network protocols don't list Closest mirror first (vpodzime)
1680     Resolves: rhbz#1253196
1681     - Make sure proper installclass selected for RHEL installs. (sbueno+anaconda)
1682     Related: rhbz#1196721
1683     - Fix traceback on tz spoke in text mode (sbueno+anaconda)
1684     Resolves: rhbz#1252025
1685    
1686     * Thu Aug 13 2015 Brian C. Lane <bcl@redhat.com> - 21.48.22.33-1
1687     - Re-enable addons as additional repositories. (clumens)
1688     Resolves: rhbz#1248323
1689    
1690     * Wed Aug 12 2015 Brian C. Lane <bcl@redhat.com> - 21.48.22.32-1
1691     - product.img buildstamp should override distribution buildstamp (bcl)
1692     Resolves: rhbz#1240238
1693     - Tell libreport if it is a final release or not (vpodzime)
1694     Resolves: rhbz#1252036
1695     - On incomplete ks, don't automatically proceed with install. (sbueno+anaconda)
1696     Resolves: rhbz#1251978
1697     - Add the "make ci" target. (clumens)
1698     Related: rhbz#1196721
1699     - Tweak tmux configuration file (jkonecny)
1700     Resolves: rhbz#1238799
1701    
1702     * Fri Aug 07 2015 Brian C. Lane <bcl@redhat.com> - 21.48.22.31-1
1703     - Only pass DASDs to is_ldl_dasd function. (sbueno+anaconda)
1704     Resolves: rhbz#1248666
1705    
1706     * Wed Aug 05 2015 Brian C. Lane <bcl@redhat.com> - 21.48.22.30-1
1707     - Add the anaconda-user-help package as dependency (mkolman)
1708     Resolves: rhbz#1247779
1709    
1710     * Tue Aug 04 2015 Brian C. Lane <bcl@redhat.com> - 21.48.22.29-1
1711     - Fix a line that still treated the fstype as a GtkComboBoxText (dshea)
1712     Resolves: rhbz#1248885
1713     - Fix fastestmirror plugin check (bcl)
1714     Resolves: rhbz#1249569
1715    
1716     * Fri Jul 31 2015 Brian C. Lane <bcl@redhat.com> - 21.48.22.28-1
1717     - Display a EULA-related warning on progress hub at end of installation.
1718     (sbueno+anaconda)
1719     Resolves: rhbz#1249185
1720     Resolves: rhbz#1248432
1721    
1722     * Thu Jul 30 2015 Brian C. Lane <bcl@redhat.com> - 21.48.22.27-1
1723     - Fix error with OEMDRV ks auto-load check. (sbueno+anaconda)
1724     Related: rhbz#1057271
1725    
1726     * Wed Jul 29 2015 Brian C. Lane <bcl@redhat.com> - 21.48.22.26-1
1727     - Prevent incomplete translations from making the TUI unusable (mkolman)
1728     Resolves: rhbz#1235617
1729     - Disable a Pylint false-positive (mkolman)
1730     Related: rhbz#1234896
1731    
1732     * Tue Jul 28 2015 Brian C. Lane <bcl@redhat.com> - 21.48.22.25-1
1733     - Add support for autostep and --autoscreenshot (mkolman)
1734     Resolves: rhbz#1234896
1735     - Really fix unexpected exits in execReadlines (dshea)
1736     Related: rhbz#1188287
1737     - iscsi: display portal (address:port) of node in node list (rvykydal)
1738     Related: rhbz#1195570
1739    
1740     * Fri Jul 24 2015 Brian C. Lane <bcl@redhat.com> - 21.48.22.24-1
1741     - Add parentheses around the IPV6 regex fragment. (dshea)
1742     Resolves: rhbz#1246133
1743     - Add tests for IPv6 literals in URLs (dshea)
1744     Related: rhbz#1246133
1745     - Do not set user home to / in advanced user dialog (bcl)
1746     Resolves: rhbz#1245837
1747     - Fix Initial PPC PReP Boot Selector Name (rmarshall)
1748     Resolves: rhbz#1172755
1749    
1750     * Thu Jul 23 2015 Brian C. Lane <bcl@redhat.com> - 21.48.22.23-1
1751     - Handle missing environment without traceback (bcl)
1752     Resolves: rhbz#1245296
1753     - Disable a Pylint false-positive (mkolman)
1754     Related: rhbz#1182562
1755     - Make sure TUI is readable for non-latin languages (mkolman)
1756     Resolves: rhbz#1182562
1757     - Auto-load ks.cfg if OEMDRV volume available. (sbueno+anaconda)
1758     Resolves: rhbz#1057271
1759     - dracut: minor cleanup (wwoods)
1760     Related: rhbz#1168902
1761     - dracut: fix missing messages for inst.ks=cdrom (wwoods)
1762     Related: rhbz#1168902
1763     - Wait forever for kickstarts on CDROM (wwoods)
1764     Resolves: rhbz#1168902
1765     - Allow cdrom-swapping when doing "inst.ks=cdrom[:...]" (wwoods)
1766     Resolves: rhbz#1168902
1767     - anaconda-lib.sh: add tell_user() and dev_is_cdrom() (wwoods)
1768     Related: rhbz#1168902
1769    
1770     * Wed Jul 22 2015 Brian C. Lane <bcl@redhat.com> - 21.48.22.22-1
1771     - Fix various pylint problems caused by the new rescue mode. (clumens)
1772     Related: rhbz#965985
1773     - network: use ibftx interface for iSCSI from iBFT in dracut (rvykydal)
1774     Resolves: rhbz#1077291
1775     - Remove text.py from spec file (bcl)
1776     Related: rhbz#965985
1777    
1778     * Mon Jul 20 2015 Brian C. Lane <bcl@redhat.com> - 21.48.22.21-1
1779     - Remove the last usage of newt and get rid of it as a dependency
1780     (sbueno+anaconda)
1781     Related: rhbz#965985
1782     - Enable anaconda to use the new rescue mode. (sbueno+anaconda)
1783     Resolves: rhbz#965985
1784     - Get rid of unnecessary constants in constants_text. (sbueno+anaconda)
1785     Related: rhbz#965985
1786     - Get rid of some unnecessary files. (sbueno+anaconda)
1787     Related: rhbz#965985
1788    
1789     * Fri Jul 17 2015 Brian C. Lane <bcl@redhat.com> - 21.48.22.20-1
1790     - Add support for architecture suffixes in help files (mkolman)
1791     Related: rhbz#1196721
1792     Related: rhbz#1072033
1793     - network: add s390 options to default ifcfg files (rvykydal)
1794     Resolves: rhbz#1074570
1795    
1796     * Wed Jul 15 2015 Brian C. Lane <bcl@redhat.com> - 21.48.22.19-1
1797     - Don't ask to start vnc if user specifies text mode. (sbueno+anaconda)
1798     Resolves: rhbz#1241425
1799     Related: rhbz#1196721
1800     - Fix pylint errors in the new driver disk code. (clumens)
1801     Related: rhbz#1084197
1802     - Restore RHEL-specific stylesheet data. (dshea)
1803     Related: rhbz#1196721
1804    
1805     * Fri Jul 10 2015 Brian C. Lane <bcl@redhat.com> - 21.48.22.18-1
1806     - Start the network before the display (dshea)
1807     Resolves: rhbz#1240732
1808     - Bump pykickstart version required. (sbueno+anaconda)
1809     Resolves: rhbz#1241413
1810     - Set the no network error in refresh() (dshea)
1811     Resolves: rhbz#1238797
1812     - Show the event box immediately when setting infobar messages. (dshea)
1813     Related: rhbz#1238797
1814     - dracut: fix boot failure waiting for finished/dd.sh (wwoods)
1815     Related: rhbz#1084197
1816     - driver_updates: fixes from patch review (wwoods)
1817     Related: rhbz#1084197
1818     - dd-refactor: dracut + build bits (wwoods)
1819     Resolves: rhbz#1084197
1820     Resolves: rhbz#1164131
1821     Related: rhbz#1213546
1822     - parse-kickstart: just emit 'inst.dd=XXX' for driverdisk (wwoods)
1823     Related: rhbz#1084197
1824     - parse-kickstart: pylint fixes (wwoods)
1825     Related: rhbz#1084197
1826     - dd-refactor: new driver_updates.py + tests (wwoods)
1827     Related: rhbz#1084197
1828     - payload: fix driverdisk repos (wwoods)
1829     Related: rhbz#1084197
1830     - Always write NTP servers to config files (wwoods)
1831     Resolves: rhbz#1197575
1832     - dracut: fix boot with inst.ks and no inst.{repo,stage2} (wwoods)
1833     Resolves: rhbz#1238987
1834    
1835     * Thu Jul 09 2015 Brian C. Lane <bcl@redhat.com> - 21.48.22.17-1
1836     - Check for Gtk before importing escape_markup (bcl)
1837     Related: rhbz#1236995
1838     - Add handling for unusable storage configurations. (dlehman)
1839     Resolves: rhbz#1236995
1840     - Allow markup in the label/message of DetailedErrorDialog. (dlehman)
1841     Related: rhbz#1236995
1842     - Allow passing an optional button list to showDetailedError. (dlehman)
1843     Related: rhbz#1236995
1844     - Allow kwargs with gtk_action_wait, gtk_action_nowait decorators. (dlehman)
1845     Related: rhbz#1236995
1846    
1847     * Tue Jul 07 2015 Brian C. Lane <bcl@redhat.com> - 21.48.22.16-1
1848     - Ellipsize the file system type combo box (dshea)
1849     Resolves: rhbz#1212615
1850     - Shorten the mount point entry to match the capacity entry (dshea)
1851     Resolves: rhbz#1212615
1852     - Re-save custom.glade (dshea)
1853     Resolves: rhbz#1212615
1854     - Ellipsize comboboxes (dshea)
1855     Resolves: rhbz#1212615
1856     - Wrap device labels earlier (dshea)
1857     Resolves: rhbz#1212615
1858     - Change text shown to users about the need to dasdfmt. (sbueno+anaconda)
1859     Related: rhbz#1170653
1860     - Fix a typo in the dasdfmt dialog box. (sbueno+anaconda)
1861     Related: rhbz#1170653
1862     - Enable anaconda to use the new cdl ks option, and detect ldl dasds.
1863     (sbueno+anaconda)
1864     Resolves: rhbz#1170656
1865     Resolves: rhbz#1170653
1866     - Fix GRUB2 Password Update Scope (rmarshall)
1867     Related: rhbz#985962
1868     - Enable Custom GRUB2 Password Utility (rmarshall)
1869     Related: rhbz#985962
1870    
1871     * Tue Jul 07 2015 Brian C. Lane <bcl@redhat.com> - 21.48.22.15-1
1872     - Explicitly try fetching netroot after network kickstart fetch (vpodzime)
1873     Resolves: rhbz#1238987
1874     - Refresh advanced disks after disk summary dialog (bcl)
1875     Resolves: rhbz#1226354
1876     - Show an alternative prompt if a hub contains only a single spoke (mkolman)
1877     Resolves: rhbz#1199234
1878     - Don't crash if incorrect environment is set in kickstart (mkolman)
1879     Resolves: rhbz#1234890
1880     - Allow /boot partition on iscsi with ibft (jkonecny)
1881     Related: rhbz#1164195
1882     - Make sure we work with fresh data when trying to do netroot (vpodzime)
1883     Related: rhbz#1082500
1884     - Make our manual triggering on network in dracut work (vpodzime)
1885     Resolves: rhbz#1082500
1886     - Fix broken test by infiniband patch (jkonecny)
1887     Related: rhbz#1177032
1888    
1889     * Thu Jul 02 2015 Brian C. Lane <bcl@redhat.com> - 21.48.22.14-1
1890     - Add RAID swaps to /etc/fstab (bcl)
1891     Resolves: rhbz#1234469
1892     - Fix kickstart install with infiniband (jkonecny)
1893     Resolves: rhbz#1177032
1894     - Disable Label Entry for PPC PReP Boot (rmarshall)
1895     Resolves: rhbz#1172773
1896     - Correctly propagate --ipv6gateway to ifcfg files(mkolman)
1897     Resolves: rhbz#1170845
1898     - Ask for encryption passphrase when not specified in ks (vtrefny)
1899     Resolves: rhbz#1185466
1900     - Connect scroll adjustments in the right class (dshea)
1901     Related: rhbz#1189899
1902    
1903     * Wed Jul 01 2015 Brian C. Lane <bcl@redhat.com> - 21.48.22.13-1
1904     - Cancel Container Edit Sensitizes Update (rmarshall)
1905     Resolves: rhbz#1168656
1906     - Add support for specifying arbitrary mkfs options. (clumens)
1907     Resolves: rhbz#1217110
1908     - Do not display curl 404 errors that can be safely ignored (vtrefny)
1909     Resolves: rhbz#1182776
1910     - Fix the line counting when printing long widgets (vpodzime)
1911     Related: rhbz#1184378
1912     - Improve how we set the default screen height in text mode (vpodzime)
1913     Resolves: rhbz#1184378
1914    
1915     * Tue Jun 30 2015 Brian C. Lane <bcl@redhat.com> - 21.48.22.12-1
1916     - dd: drop unnecessary archive_read_data_skip (Will Woods)
1917     Related: rhbz#1222056
1918     - dd_extract: -l should not extract modules+firmware (Will Woods)
1919     Related: rhbz#1222056
1920     - dd: fix permissions on extracted files (wwoods)
1921     Resolves: rhbz#1222056
1922     - Create and use snapshot of on-disk storage with no modifications (vpodzime)
1923     Resolves: rhbz#1160862
1924     Resolves: rhbz#1187644
1925     - Implement the class for storage snapshots (vpodzime)
1926     Related: rhbz#1187644
1927     Related: rhbz#1160862
1928     - Prevent any changes in the StorageSpoke if just going back (vpodzime)
1929     Related: rhbz#1187644
1930     Related: rhbz#1160862
1931     - fix inst.ks.sendmac for static ip=XXX (wwoods)
1932     Resolves: rhbz#1190115
1933    
1934     * Fri Jun 26 2015 Brian C. Lane <bcl@redhat.com> - 21.48.22.11-1
1935     - network: catch another race when calling dbus methods on invalid devices
1936     (rvykydal)
1937     Related: rhbz#1179276
1938     - network: GUI, add connection even when virtual device activation failed
1939     (rvykydal)
1940     Resolves: rhbz#1179276
1941     - Remove an extra '>' in the betanag warning (vpodzime)
1942     Related: rhbz#1196721
1943     - Do not mix two lists of fields when applying changes in text mode (vpodzime)
1944     Resolves: rhbz#1231149
1945    
1946     * Thu Jun 25 2015 Brian C. Lane <bcl@redhat.com> - 21.48.22.10-1
1947     - Eliminate some false test results when running glade tests. (atodorov)
1948     Related: rhbz#1196721
1949     - Fix adding 'boot=' option in FIPS mode (vtrefny)
1950     Resolves: rhbz#1190146
1951     - Use the index in grubenv (bcl)
1952     Resolves: rhbz#1209678
1953     - Make colon optional while adding iSCSI Initiator Name (sujithpshankar)
1954     Resolves: rhbz#1177573
1955     - Add basic support for LVM cache creation in kickstart (vpodzime)
1956     Resolves: rhbz#1120421
1957     - Change the betanag wording (back) to be better for RHEL (vpodzime)
1958     Related: rhbz#1196721
1959     - Set sensitivity of the "Encrypt" checkbox together with its label (vpodzime)
1960     Resolves: rhbz#1181468
1961     - Use Size, not int, for size (amulhern)
1962     Related: rhbz#1076055
1963     Related: rhbz#1196721
1964     - Changes for scheduling size change on an existing device (amulhern)
1965     Related: rhbz#1076055
1966     Related: rhbz#1196721
1967     - Remove too strict condition for changing size (amulhern)
1968     Related: rhbz#1076055
1969     Related: rhbz#1196721
1970    
1971     * Mon Jun 22 2015 Brian C. Lane <bcl@redhat.com> - 21.48.22.9-1
1972     - Enable Anaconda to configure NTP (jkonecny)
1973     Resolves: rhbz#1085013
1974     - Retry package repository metadata downloads (mkolman)
1975     Resolves: rhbz#1177366
1976     - Use UEFI VFAT ESP when kickstarting Intel Macs (jan.kundrat)
1977     Resolves: rhbz#1219196
1978     - If using pre-existing, no size needs to be specified in ksdata (amulhern)
1979     Resolves: rhbz#1169783
1980     Related: rhbz#1196721
1981     - Use the RHEL7 versions of certain partitioning commands. (clumens)
1982     Related: rhbz#1217110
1983     - Fix set size to partition in custom spoke (jkonecny)
1984     Related: rhbz#1196721
1985     - Expect addons to have categories for both GUI and TUI (vpodzime)
1986     Related: rhbz#1128616
1987    
1988     * Thu Jun 18 2015 Brian C. Lane <bcl@redhat.com> - 21.48.22.8-1
1989     - Fix nfs4 stage2 and repo handling (bcl)
1990     Resolves: rhbz#1230329
1991     - Add support for reboot --kexec kickstart command (bcl)
1992     Related: rhbz#1207747
1993     - Add inst.kexec and --kexec support to reboot with kexec (bcl)
1994     Resolves: rhbz#1207747
1995     - Add setup_kexec method to prepare the system for a reboot with kexec (bcl)
1996     Related: rhbz#1207747
1997     - Include NetworkManager-glib in anaconda-core (bcl)
1998     Related: rhbz#1196721
1999     - Use simple_replace to edit langpacks.conf (bcl)
2000     Resolves: rhbz#1165980
2001     - Add simple_replace config file function (bcl)
2002     Related: rhbz#1165980
2003     - Keyboard Scroll Fails in Viewports (dshea)
2004     Resolves: rhbz#1189899
2005     - Fix Issue with Spaces in Network IPs and Bad Input(jkonecny)
2006     Resolves: rhbz#1174451
2007     - network: fix a typo in condition for installing teamd (rvykydal)
2008     Resolves: rhbz#1199185
2009     - Fix IP / hostname mismatches when showing VNC server address (rvykydal)
2010     Resolves: rhbz#1186726
2011     - Check also ipv6 default routes when looking for onboot=yes device (rvykydal)
2012     Resolves: rhbz#1185280
2013    
2014     * Mon Jun 15 2015 Brian C. Lane <bcl@redhat.com> - 21.48.22.7-1
2015     - Update upd-kernel so that it actually works (bcl)
2016     Resolves: rhbz#1166535
2017     - Fix passing ,nfsvers=3 to dracut (bcl)
2018     Resolves: rhbz#1161820
2019     - Extract xattrs from tar payload (bcl)
2020     Resolves: rhbz#1196021
2021     - rpmostreepayload: write storage config after shared var is mounted (rvykydal)
2022     Resolves: rhbz#1203608
2023     - Do not log Xorg output to tty5 (dshea)
2024     Related: rhbz#1188287
2025     - Fix for "Kickstart installation fails..." (jkonecny)
2026     Resolves: rhbz#1197960
2027    
2028     * Wed Jun 10 2015 Brian C. Lane <bcl@redhat.com> - 21.48.22.6-1
2029     - Modify Proxy Label in Installation Source Spoke (rmarshall)
2030     Resolves: rhbz#1168554
2031     - Add error checks to liveimg mount code (bcl)
2032     Related: rhbz#1178703
2033     - If the network is disabled, also disable the network part of the source
2034     spoke. (clumens)
2035     Related: rhbz#1196721
2036     - Grubby no longer needs to be explicitly included (dmarlin)
2037     Resolves: rhbz#1176705
2038     - Don't allow /boot on iSCSI. (sbueno+anaconda)
2039     Resolves: rhbz#1164195
2040     - Fix building docs when running under "make distcheck". (clumens)
2041     Related: rhbz#1196721
2042     - Fix problems discovered by the glade tests. (clumens)
2043     Related: rhbz#1196721
2044     - Include .glade.h files in the distribution. (clumens)
2045     Related: rhbz#1196721
2046    
2047     * Mon Jun 08 2015 Brian C. Lane <bcl@redhat.com> - 21.48.22.5-1
2048     - Actually distribute the clickable message test (dshea)
2049     Related: rhbz#1125145
2050     - Get rid of the find button in the filter spoke. (dshea)
2051     Related: rhbz#1168950
2052     - Rearrange filter.glade (dshea)
2053     Related: rhbz#1168950
2054     - Fix errors in the vendor column renderers. (dshea)
2055     Related: rhbz#1168950
2056     - Fix some minor inconsistencies in filter.glade (dshea)
2057     Related: rhbz#1168950
2058     - Fix issues with advanced storage searching. (dshea)
2059     Resolves: rhbz#1168950
2060     - Remove duplicate entries from search combo boxes (dshea)
2061     Resolves: rhbz#1168950
2062     - Use named IDs for the filter type combo boxes. (dshea)
2063     Related: rhbz#1168950
2064     - Rearrange filter.glade the way glade wants it now (dshea)
2065     Related: rhbz#1168950
2066     - Pass the pylint test. (clumens)
2067     Related: rhbz#1196721
2068    
2069     * Fri Jun 05 2015 Brian C. Lane <bcl@redhat.com> - 21.48.22.4-1
2070     - network: on rhel don't assume autoconnections created by NM (rvykydal)
2071     Related: rhbz#1196721
2072     - Start vncconfig for cut/paste (hamzy)
2073     Resolves: rhbz#1169991
2074     - Don't unconditionally set ksdata.lang.seen to True (mkolman)
2075     Related: rhbz#1198642
2076     - Make sure LANG is always set to something (dshea)
2077     Resolves: rhbz#1198642
2078     - Add links to clickable warning and error messages. (dshea)
2079     Resolves: rhbz#1125145
2080     - Add a test to look for clickable messages that aren't clickable enough.
2081     (dshea)
2082     Related: rhbz#1125145
2083     - Allow markup and links in the info bar. (dshea)
2084     Related: rhbz#1125145
2085     - Update the FCOE command to use the RHEL7 base class. (clumens)
2086     Related: rhbz#1196721
2087     - Fix RHEL Atomic installclass test (bcl)
2088     Related: rhbz#1196721
2089     - Use a rhel7.2 mock chroot for rc-release (bcl)
2090     Related: rhbz#1196721
2091     - Build documentation during build instead of dist (dshea)
2092     Related: rhbz#1196721
2093     - Clean out the mock chroot before attempting to run the rest of the test.
2094     (clumens)
2095     Related: rhbz#1196721
2096     - Put all mock results into the top-level source dir. (clumens)
2097     Related: rhbz#1196721
2098     - Change dracut requires to the RHEL7 version. (bcl)
2099     Related: rhbz#1196721
2100     - dnf is not supported in RHEL7 (bcl)
2101     Related: rhbz#1196721
2102     - Use createrepo, createrepo_c isn't available in RHEL7 (bcl)
2103     Related: rhbz#1196721
2104     - Change F21 pykickstart commands to RHEL7 (jkonecny)
2105     Related: rhbz#1196721
2106     - Add an option to startProgram to not reset the locale (dshea)
2107     Related: rhbz#1188287
2108     - Set $LIBUSER_CONF early (dshea)
2109     Related: rhbz#1188287
2110     - Assume UTC if setting the system time without a timezone (dshea)
2111     Related: rhbz#1188287
2112     - Do not set $TZ (dshea)
2113     Related: rhbz#1188287
2114     - Beware of 0 being the same bool value as None when setting time (vpodzime)
2115     Related: rhbz#1188287
2116     - Fix the last member of the struct_time struct (vpodzime)
2117     Related: rhbz#1188287
2118     - Remove timestamp-based version support. (dshea)
2119     Related: rhbz#1188287
2120     - Avoid setting $LANG and $LANGUAGE, except where we can't (dshea)
2121     Resolves: rhbz#1188287
2122     - Add a parameter to iutil.startProgram to extend the environment (dshea)
2123     Related: rhbz#1188287
2124     - Add a method to set environment variables for child processes (dshea)
2125     Related: rhbz#1188287
2126     - Set $DISPLAY before threads are started. (dshea)
2127     Related: rhbz#1188287
2128     - Handle the simple cases of environment modification. (dshea)
2129     Related: rhbz#1188287
2130     - Always use iutil to start processes. (dshea)
2131     Related: rhbz#1188287
2132     - Move the X startup logic to iutil (dshea)
2133     Related: rhbz#1188287
2134     - Move process watching to iutil. (dshea)
2135     Related: rhbz#1188287
2136     - Close file descriptors while daemonizing auditd (dshea)
2137     Related: rhbz#1188287
2138     - Add an option to only capture stdout with execWithCapture (dshea)
2139     Related: rhbz#1188287
2140     - Simplify iutil.execReadlines. (dshea)
2141     Related: rhbz#1188287
2142     - Add close_fds to the Popen call. (dshea)
2143     Related: rhbz#1188287
2144     - Add an option to startProgram to reset signal handlers. (dshea)
2145     Related: rhbz#1188287
2146     - Add a method startProgram to handle process starting (dshea)
2147     Related: rhbz#1188287
2148     - Lock program_log_lock closer to where the log is written. (dshea)
2149     Related: rhbz#1188287
2150     - Add missing files to po/POTFILES.in, after fixing the test for them.
2151     (clumens)
2152     Related: rhbz#1196721
2153     - Backport iutil_test.py updates from master (atodorov). (clumens)
2154     Related: rhbz#1196721
2155     - Backport pylint updates from master (atodorov). (clumens)
2156     Related: rhbz#1196721
2157     - Fix strings with style problems. (clumens)
2158     Related: rhbz#1196721
2159     - Backport gettext updates from master (atodorov). (clumens)
2160     Related: rhbz#1196721
2161     - Remove the automated GUI tests. (clumens)
2162     Related: rhbz#1196721
2163     - Fix Kickstart installation without default gateway errors out (jkonecny)
2164     Resolves: rhbz#1147181
2165     - rescue: find root partition of ostree (atomic) installations (rvykydal)
2166     Resolves: rhbz#1152041
2167     - Identify Atomic install class by correct product name (rvykydal)
2168     Resolves: rhbz#1193268
2169     - rpmostreepayload: Avoid shutil.copytree in favor of cp -r to fix symlinks
2170     (walters)
2171     Resolves: rhbz#1199127
2172     - atomic: set up atomic specific partitioning defaults (rvykydal)
2173     Resolves: rhbz#1155452
2174     - A couple updates to installclasses. (clumens)
2175     Related: rhbz#1155452
2176     - rpmostreepayload: Rework remote add handling (walters)
2177     Resolves: rhbz#1199127
2178     - Use RHEL7 Bootloader command in parse-kickstart (rvykydal)
2179     Related: rhbz#1196721
2180     - Use RHEL7 Network command in parse-kickstart (rvykydal)
2181     Related: rhbz#1196721
2182    
2183     * Wed Jun 03 2015 Brian C. Lane <bcl@redhat.com> - 21.48.22.3-1
2184     - Revert "Select http source if there is no mirror enabled." (bcl)
2185     Related: rhbz#1196721
2186     - Make sure /boot is not LVM LV if we're on s390x (sbueno+anaconda)
2187     Resolves: rhbz#873135
2188     Related: rhbz#1196721
2189     - Preserve kickstart url behavior for mirrorlist (bcl)
2190     Related: rhbz#1196721
2191     Related: rhbz#1109933
2192     - Use a backslash to escape nfs spaces instead of x20 (bcl)
2193     Related: rhbz#1196721
2194     Related: rhbz#1109933
2195     - Create missing parent directories for user's home directory (bcl)
2196     Resolves: rhbz#1163775
2197     Related: rhbz#1196721
2198     - custom: Clearing errors should also clear Done clicked state (bcl)
2199     Related: rhbz#1196721
2200     Resolves: rhbz#1158609
2201     - Clear errors when downloading new MD in text (bcl)
2202     Related: rhbz#1196721
2203     Related: rhbz#1125927
2204     - Return result of default key handling in text summary hub (bcl)
2205     Related: rhbz#1196721
2206     Related: rhbz#997405
2207     - Protect protected devices in custom spoke (bcl)
2208     Related: rhbz#1196721
2209     Resolves: rhbz#1052883
2210     - Don't call storage.write for dirinstall (bcl)
2211     Related: rhbz#1196721
2212     Related: rhbz#1120206
2213     - Don't call BusyCursor before Gdk is setup (bcl)
2214     Resolves: rhbz#1078868
2215     Related: rhbz#1196721
2216     - Handle spaces in inst.repo, kickstart nfs, and url commands (bcl)
2217     Resolves: rhbz#1109933
2218     Related: rhbz#1196721
2219     - Exclude hfsplus-tools from rhel (bcl)
2220     Related: rhbz#1196721
2221     Resolves: rhbz#1119305
2222     - Skip nvram update on ppc64 image/dir installations (bcl)
2223     Resolves: rhbz#1136486
2224     Related: rhbz#1196721
2225     - CmdlineError should exit with a 1 (bcl)
2226     Related: rhbz#1196721
2227     Related: rhbz#1102318
2228     - Remove logging to tty3 and tty5 (bcl)
2229     Resolves: rhbz#1073336
2230     Related: rhbz#1196721
2231     - Only install liveinst symlink on supported arches (bcl)
2232     Related: rhbz#1121678
2233     Related: rhbz#1196721
2234     - Mountpoint encrypted checkbox reflects container state (bcl)
2235     Resolves: rhbz#1076171
2236     Related: rhbz#1196721
2237     - Write sslverify=0 for url kickstart method (bcl)
2238     Related: rhbz#1196721
2239     Resolves: rhbz#1116858
2240     - Add noverifyssl and proxy support to dracut ks handling (bcl)
2241     Related: rhbz#1196721
2242     Resolves: rhbz#1116858
2243     - Install selected ks repos to target (bcl)
2244     Related: rhbz#1196721
2245     Resolves: rhbz#1119867
2246     - Add check for the format of grub2 encrypted password (bcl)
2247     Related: rhbz#1196721
2248     Related: rhbz#1070327
2249     - Use low level file i/o for rpm callback logging (bcl)
2250     Related: rhbz#1196721
2251     Resolves: rhbz#1035745
2252     - Add platform specific group selection (bcl)
2253     Resolves: rhbz#884385
2254     Related: rhbz#1196721
2255     - reiserfs is not supported (bcl)
2256     Related: rhbz#1196721
2257     Resolves: rhbz#1066635
2258     - remove epdb SIGHUP debug handler (bcl)
2259     Related: rhbz#1196721
2260     Related: rhbz#1065557
2261     - Clean up some rpmdiff errors (bcl)
2262     Related: rhbz#1196721
2263     Resolves: rhbz#1012624
2264     - Remove Closest mirrors if no mirrors (bcl)
2265     Related: rhbz#876135
2266     Related: rhbz#1196721
2267     - Select http source if there is no mirror enabled. (bcl)
2268     Related: rhbz#876135
2269     Related: rhbz#1196721
2270     - Use RHEL7 kickstart commands (bcl)
2271     Related: rhbz#1196721
2272     - Show error on invalid username attempts in TUI. (sbueno+anaconda)
2273     Resolves: rhbz#1171778
2274     - Fix enlightbox call in ZFCPDialog. (sbueno+anaconda)
2275     Related: rhbz#1196721
2276     - Get rid of unnecessary python disable-msg in zfcp spoke. (sbueno+anaconda)
2277     Related: rhbz#1196721
2278     - Fix some pylint errors in the zfcp panel. (sbueno+anaconda)
2279     Related: rhbz#1196721
2280     - Fix an accelerator collision found on the filter page. (sbueno+anaconda)
2281     Related: rhbz#1196721
2282     - Fix some issues pylint found. (sbueno+anaconda)
2283     Related: rhbz#1196721
2284     - Show disk paths on Other page in advstorage. (sbueno+anaconda)
2285     Related: rhbz#1196721
2286     - Add missing translation context for Add ECKD DASD button in advstorage.
2287     (sbueno+anaconda)
2288     Related: rhbz#1196721
2289     - Add translation contexts for z and zfcp panel in advstorage.
2290     (sbueno+anaconda)
2291     Related: rhbz#1196721
2292     - Convert devices size to str for GUI for zFCP devices (amulhern)
2293     Related: rhbz#1196721
2294     - Fix string formatting of zFCP devices. (sbueno+anaconda)
2295     Related: rhbz#1196721
2296     - Fix the way zFCP devices are displayed in storage spoke. (sbueno+anaconda)
2297     Related: rhbz#1196721
2298     - Show labels on Add zFCP dialog. (sbueno+anaconda)
2299     Related: rhbz#1196721
2300     - Fix failure to search by LUN in advanced storage spoke. (sbueno+anaconda)
2301     Related: rhbz#1196721
2302     - Get rid of the clear button in advanced storage spoke. (sbueno+anaconda)
2303     Related: rhbz#1196721
2304     - Fix up the z Panel in advanced storage. (sbueno+anaconda)
2305     Related: rhbz#1196721
2306     - Add support for adding zFCP devices in the GUI (sbueno+anaconda)
2307     Related: rhbz#1196721
2308     - Fix dracut reads ksdevice from missing os enviromnent (jkonecny)
2309     Related: rhbz#1085310
2310     - Fix --device=link and --device not specified (rvykydal)
2311     Resolves: rhbz#1085310
2312    
2313     * Mon Jun 01 2015 Brian C. Lane <bcl@redhat.com> - 21.48.22.2-1
2314     - Remove an extlinux-related block from rpmostreepayload.py. (clumens)
2315     Related: rhbz#1196721
2316     Related: rhbz#1153409
2317     - bootloader: Bridge efi_dir configuration earlier for rpmostreepayload
2318     (walters)
2319     Related: rhbz#1196721
2320     Related: rhbz#1153409
2321     - rpmostreepayload: Handle grub2+EFI layout (walters)
2322     Related: rhbz#1196721
2323     Related: rhbz#1153409
2324     - rpmostreepayload: Copy all subdirectories of /usr/lib/ostree-boot (walters)
2325     Related: rhbz#1196721
2326     Related: rhbz#1153409
2327     - Handle the case of rpmostreepayload + GRUB2 (walters)
2328     Related: rhbz#1196721
2329     Related: rhbz#1153409
2330     - Implement the new reqpart command. (clumens)
2331     Resolves: rhbz#1164660
2332    
2333     * Fri May 29 2015 Brian C. Lane <bcl@redhat.com> - 21.48.22.1-1
2334     - Update scripts/makebumpver to current version from master (bcl)
2335     Related: rhbz#1196721
2336     - Add .0 to version number -- 21.48.22.0 (bcl)
2337     Related: rhbz#1196721
2338     - Show empty VGs in the custom spoke. (dlehman)
2339     Related: rhbz#1196721
2340     - Fix makeupdates handling of Release: (bcl)
2341     Related: rhbz#1196721
2342     - network: add teamd package if team is used during installation (#1185670) (rvykydal)
2343     Related: rhbz#1196721
2344     - network: pass team opts to dracut for netroot (#1075666) (rvykydal)
2345     Related: rhbz#1196721
2346     - iscsi: when logging into nodes consider ip:port of node (#1114820) (rvykydal)
2347     Related: rhbz#1196721
2348     - Don't traceback if connection does not have read-only setting (#1158919) (rvykydal)
2349     Related: rhbz#1196721
2350     - network: display only actual fqdn of ip we offer for vnc connection (#1089429) (rvykydal)
2351     Related: rhbz#1196721
2352     - network: fix a typo making creating virtual devices in %pre fail (#1075195) (rvykydal)
2353     Related: rhbz#1196721
2354     - network: support for bridge, require pykickstart with the support (#1075195) (rvykydal)
2355     Related: rhbz#1196721
2356     - network: Catch exception from NM failing to create a bridge device (#1075195) (rvykydal)
2357     Related: rhbz#1196721
2358     - network: add bridge support for kickstart %pre phase (#1075195) (rvykydal)
2359     Related: rhbz#1196721
2360     - network: generate kickstart commands for bridge devices (#1075195) (rvykydal)
2361     Related: rhbz#1196721
2362     - network: add bridge support to kickstart (#1075195) (rvykydal)
2363     Related: rhbz#1196721
2364     - network: support for adding bridge devices (#1075195) (rvykydal)
2365     Related: rhbz#1196721
2366     - network: display bridge devices in status (#1075195) (rvykydal)
2367     Related: rhbz#1196721
2368     - parent is unused, so mark it as such. (clumens)
2369     Related: rhbz#1196721
2370     - network: enable NM ibft plugin only for ip=ibft boot option (#804511) (rvykydal)
2371     Related: rhbz#1196721
2372     - network: add support for vlan tag in iBFT (#804511) (rvykydal)
2373     Related: rhbz#1196721
2374     - network: GUI: reactivate connection automatically after configuration (#1033063) (rvykydal)
2375     Related: rhbz#1196721
2376     - Fix position of Refresh List button in filter spoke (#1065716) (rvykydal)
2377     Related: rhbz#1196721
2378     - Fix accelerator collision of Refresh button (#1065716) (rvykydal)
2379     Related: rhbz#1196721
2380     - gui: add Refresh button to network storage UI (#1065716) (rvykydal)
2381     Related: rhbz#1196721
2382     - Use absolute path for extlinux/menu.c32 (rvykydal)
2383     Related: rhbz#1196721
2384     - iscsi: pass rd.* options of devices to be mouted in dracut (#1192398) (rvykydal)
2385     Related: rhbz#1196721
2386     - network: adapt to NetworkManager package split-up (#1182633) (rvykydal)
2387     Related: rhbz#1196721
2388     - Take "RHEL Atomic Host" as rhel installclass (#1150410) (rvykydal)
2389     Related: rhbz#1196721
2390     - network: handle dbus UnknownMethod exception on invalid objects (#1061796) (rvykydal)
2391     Related: rhbz#1196721
2392     - network: fix typo 'Private ksy pasword' (#1120374) (rvykydal)
2393     Related: rhbz#1196721
2394     - Fix up a string style issue found in the last network commits. (clumens)
2395     Related: rhbz#1196721
2396     - network: WPA Enterprise: don't ask twice for password (#1120374) (rvykydal)
2397     Related: rhbz#1196721
2398     - network: add support for WPA Enterprise (#1120374) (rvykydal)
2399     Related: rhbz#1196721
2400     - network: add s390 network ifcfg options also for bond slaves (#1090558) (rvykydal)
2401     Related: rhbz#1196721
2402     - network: don't crash, just log for unrecognized bond options (#1039006) (rvykydal)
2403     Related: rhbz#1196721
2404     - network: don't traceback on invalid team options (#1114282) (rvykydal)
2405     Related: rhbz#1196721
2406     - network: copy resolv.conf to chroot before installing packages (#1048520) (rvykydal)
2407     Related: rhbz#1196721
2408     - network: don't write HWADDR in ifcfgs generated by kickstart (#1130042) (rvykydal)
2409     Related: rhbz#1196721
2410     - network: show ip of device with default route for vnc and ssh (#1083305) (rvykydal)
2411     Related: rhbz#1196721
2412     - network: adapt to NM fixing virtual device disconnection (#1084953) (rvykydal)
2413     Related: rhbz#1196721
2414     - Log installation successes and failures via ipmitool. (clumens)
2415     Related: rhbz#1196721
2416     - In dracut, do not display a warning for network lines with just a hostname. (clumens)
2417     Related: rhbz#1196721
2418     - Preserve the order of boot args added by kickstart. (clumens)
2419     Related: rhbz#1196721
2420     - Make the Selected Disks and Configure Mount Point dialogs wider. (clumens)
2421     Related: rhbz#1196721
2422     - Sync up the Selected Disks and Configure Mount Points dialogs. (clumens)
2423     Related: rhbz#1196721
2424     - Add rc-release target (bcl)
2425     Related: rhbz#1196721
2426     - Change --skip-tx to --skip-zanata in scratch-bumpver (bcl)
2427     Related: rhbz#1196721
2428     - Add --newrelease to makebumpver (bcl)
2429     Related: rhbz#1196721
2430     - Update translation documentation for Zanata (bcl)
2431     Related: rhbz#1196721
2432     - Switch translation support to fedora.zanata.org (bcl)
2433     Related: rhbz#1196721
2434     - Revert "Use gettext to process glade files." (clumens)
2435     Related: rhbz#1196721
2436     - Change of label in iscsi storage spoke (jkonecny)
2437     Related: rhbz#1196721
2438     - Clear TUI source spoke errors that may have been leftover from a prior attempt. (#1196721) (sbueno+anaconda)
2439     Related: rhbz#1196721
2440     - Fix completion setting in TUI language spoke. (#1196721) (sbueno+anaconda)
2441     Related: rhbz#1196721
2442    
2443     * Mon Dec 08 2014 Samantha N. Bueno <sbueno+anaconda@redhat.com> - 21.48.22-1
2444     - Really fix issue with starting in cmdline mode on s390x. (#1040933)
2445     (sbueno+anaconda)
2446     - Fix EOF error that occurs if user input required in x3270. (#1171135)
2447     (jstodola)
2448    
2449     * Tue Dec 02 2014 Vratislav Podzimek <vpodzime@redhat.com> - 21.48.21-1
2450     - Revert "Make Python's default encoding detection work on Live installations
2451     (#1169019)" (awilliam)
2452    
2453     * Mon Dec 01 2014 Samantha N. Bueno <sbueno+anaconda@redhat.com> - 21.48.20-1
2454     - Revert "Search for a valid stage1 device on disks with stage1 mount points
2455     (#1168118)" (sbueno+anaconda)
2456     - Make Python's default encoding detection work on Live installations
2457     (#1169019) (vpodzime)
2458     - Force translation files download instead of skipping them (#1169023)
2459     (vpodzime)
2460    
2461     * Fri Nov 28 2014 Vratislav Podzimek <vpodzime@redhat.com> - 21.48.19-1
2462     - Search for a valid stage1 device on disks with stage1 mount points (#1168118)
2463     (awilliam)
2464    
2465     * Thu Nov 27 2014 Vratislav Podzimek <vpodzime@redhat.com> - 21.48.18-1
2466     - Tell curl it should follow redirects when fetching updates.img (#1168561)
2467     (vpodzime)
2468     - Snapshot free space after clearpart for swap suggestion (#1167965) (vpodzime)
2469    
2470     * Wed Nov 26 2014 Samantha N. Bueno <sbueno+anaconda@redhat.com> - 21.48.17-1
2471     - Make sure storage info bar is displayed (#1166730) (bcl)
2472     - Fix SELINUX_DEFAULT import (#1167047) (bcl)
2473     - Fix noselinux cmdline default (#1167047) (bcl)
2474    
2475     * Thu Nov 20 2014 Samantha N. Bueno <sbueno+anaconda@redhat.com> - 21.48.16-1
2476     - Support high contrast mode in fedora-welcome (#1160499) (dshea)
2477    
2478     * Tue Nov 18 2014 Samantha N. Bueno <sbueno+anaconda@redhat.com> - 21.48.15-1
2479     - do not delete liveimg --url=file:/// file (gczarcinski)
2480     - Provide useful hints on TTY1 during the installation (mkolman)
2481     - Fix typo from commit 9b3259874. (#1120964) (dlehman)
2482     - Remove the old custom partitioning help dialog (mkolman)
2483     - Check if we read something when emptying stdin queue (vpodzime)
2484     - Require min entropy for 'part --encrypted' devices (#1162695) (vpodzime)
2485     - Don't rely on terminal attributes being configurable (#1162702) (vpodzime)
2486     - Disable payloads that failed to setup (#1162732) (dshea)
2487     - Don't change langpacks config of installer environment (#1066017) (rvykydal)
2488    
2489     * Tue Nov 11 2014 Samantha N. Bueno <sbueno+anaconda@redhat.com> - 21.48.14-1
2490     - Add support for doing a liveimg kickstart with local file (#1140358) (bcl)
2491     - Add a placeholder for a product-specific logo (dshea)
2492     - Load a stylesheet from product.img (dshea)
2493     - Fix make distcheck (mkolman)
2494     - Include help content in the Anaconda tarball (mkolman)
2495     - Fix typo causing traceback when NTP is turned ON/OFF (vpodzime)
2496     - Unpack the callback data given to us by blivet (vpodzime)
2497     - Add timeout to callbacks waiting for enough entropy (#1073679) (vpodzime)
2498     - Prevent tb on s390x when de-selecting a DASD and doing custom part.
2499     (sbueno+anaconda)
2500     - Revert "Revert productName repo name change (#1128474)" (bcl)
2501     - Update the background image paths used in Fedora. (dshea)
2502     - dracut/save-initramfs.sh: don't save /tmp (wwoods)
2503     - Add a pylint module to detect uses of interruptible system calls. (dshea)
2504     - Wrap interruptible system calls in a loop (#1160041) (dshea)
2505     - Warn users about liveinst usage of --updates (#1153550) (bcl)
2506     - Catch EOFError in raw_input (#1158841) (bcl)
2507     - Ensure we are specifying sensible target sizes for resize. (#1120964)
2508     (dlehman)
2509     - Set the autopart fstype for boot too (#1112697) (bcl)
2510     - Unconditionally clear the process handle when nm-c-e exits (#1132645) (dshea)
2511     - Make anaconda more scrollable (#1135024) (dshea)
2512     - Lightly rearrange the nav_area (dshea)
2513     - Do not install interactive exception handler in cmdline mode (#1155979)
2514     (vpodzime)
2515     - Wait until all spokes are setup before updating continue button (bcl)
2516     - Allow adding prepboot to a blank disk in custom (#1155660) (bcl)
2517     - Remove unused imports (vpodzime)
2518    
2519     * Tue Oct 28 2014 Samantha N. Bueno <sbueno+anaconda@redhat.com> - 21.48.13-1
2520     - Fix handling of md fwraid names in kickstart bootloader command. (#1156354)
2521     (dlehman)
2522     - Fix switching environments when no environment is selected (#1155756) (dshea)
2523     - Use an empty string for no root password instead of None (#1155576) (dshea)
2524     - Just preserve the %%addon header args if an addon is missing (#1155026)
2525     (vpodzime)
2526    
2527     * Thu Oct 23 2014 Samantha N. Bueno <sbueno+anaconda@redhat.com> - 21.48.12-1
2528     - Fix a spelling error (#1153672) (dshea)
2529     - Update checkSizes to work in terms of Size objects (#1129629). (clumens)
2530    
2531     * Mon Oct 20 2014 Samantha N. Bueno <sbueno+anaconda@redhat.com> - 21.48.11-1
2532     - Don't panic prematurely on a missing size (#1154190) (amulhern)
2533     - Log when using updates from /tmp/updates/ (bcl)
2534     - Fix # handling in SimpleConfigFile (#1045687) (bcl)
2535    
2536     * Wed Oct 15 2014 Samantha N. Bueno <sbueno+anaconda@redhat.com> - 21.48.10-1
2537     - Change our docs that are close to ReST to proper ReST (vpodzime)
2538     - Run restorecon on /etc/hostname (#1133368) (bcl)
2539     - Add authconfig and firewalld packages when used in ks (#1147687) (bcl)
2540     - Allow kickstart with no method (#972265) (bcl)
2541     - Fix a typo from 73d3a8e5. (sbueno+anaconda)
2542     - Respect both ways how to disable bootloader installation (vpodzime)
2543     - Don't care about crash args in bootloader (#1116323) (vpodzime)
2544     - Add nombr to anaconda to suppress updating MBR (#886502) (gczarcinski)
2545     - Use translated versions of the AM/PM strings consistently (vpodzime)
2546     - Import GUI-specific stuff only when running GUI in entropy handling
2547     (vpodzime)
2548     - Always store the information about display mode in ksdata (vpodzime)
2549     - Make the date format locale-dependent in our GUI (#1044233) (vpodzime)
2550     - A function for resolving date format and order (vpodzime)
2551     - Reorganize the right side of the Custom spoke (#1094856) (vpodzime)
2552     - Move _verifyLUKSDevicesHaveKey to Anaconda's codebase (vpodzime)
2553     - Add support for thin pool profile specification in kickstart (vpodzime)
2554     - Fix file name of the entropy dialog in POTFILES.in (vpodzime)
2555     - Require minimum random data entropy when creating LUKS (#1073679) (vpodzime)
2556     - Give blivet callbacks for reporting partitioning progress (vpodzime)
2557     - Split localed's converted layouts and variants (#1073825) (vpodzime)
2558     - Create free space snapshot before doing custom->autopart (vpodzime)
2559     - Specify thin pool metadata/chunk size only if given by user (#1140635)
2560     (vpodzime)
2561     - Distribute the right docs files (vpodzime)
2562     - Don't automatically select environments for kickstart installs (#1018226)
2563     (dshea)
2564     - Initialize the GUI lock in a way that doesn't break the API (dshea)
2565     - Don't check enabledPlugins if plugins are not yet enabled (#1142544) (dshea)
2566     - Really fix an enlightbox call. (dshea)
2567     - Don't strip accents from the user-inputted keyboard string (dshea)
2568     - Convert strings to unicode in have_word_match (#1146581) (dshea)
2569     - Switch to using the new help content path (#1072033) (mkolman)
2570     - Fix a race between checking for Gtk.main_level and running Gtk.main (dshea)
2571     - Allow recursive lightbox calls (#1147337) (dshea)
2572     - Disable the ntp service with --nontp (#1135768) (dshea)
2573     - Ignore partition start if there is a biosboot partition (#1044849) (bcl)
2574     - Require a larger /boot (#1129629). (clumens)
2575     - Remove duplicates when adding new devices (#887526) (bcl)
2576    
2577     * Wed Oct 08 2014 Samantha N. Bueno <sbueno+anaconda@redhat.com> - 21.48.9-1
2578     - Bump blivet version requires for all the DASD changes in 0.61.4.
2579     (sbueno+anaconda)
2580     - We now need to specify an epoch for the python-blivet version requires.
2581     (clumens)
2582     - Fix autotools rules to properly include help placeholders (#1072033)
2583     (mkolman)
2584     - Modify nm to return defaults when no dbus is available (bcl)
2585     - Skip networkInitialize for image and dir installations (bcl)
2586     - Ignore safe_dbus errors in keyboard setup (bcl)
2587     - Skip syslog for dirinstall (bcl)
2588     - s390x: show dialog if kernel cmdline in zipl.conf is too long.
2589     (sbueno+anaconda)
2590     - Really exit when "Exit installer" in the error dialog is clicked (vpodzime)
2591     - Don't allow /boot on lvm on s390x. (sbueno+anaconda)
2592     - Add the new langsupport.py TUI spoke to POTFILES.in. (clumens)
2593     - Remove the now-unused imports of storageInitialize. (clumens)
2594     - Add support for language selection in text mode. (sbueno+anaconda)
2595     - Don't force a user to return to the storage spoke after dasdfmt
2596     (sbueno+anaconda)
2597     - Don't run storageInitialize after dasdfmt (sbueno+anaconda)
2598     - s390x: Apply disk selection before dasdfmt to preserve data.
2599     (sbueno+anaconda)
2600     - Don't show the Add DASD button unless on s390x. (sbueno+anaconda)
2601     - Don't show the Add DASD button unless on s390x. (sbueno+anaconda)
2602     - Preserve network args on s390x. (sbueno+anaconda)
2603     - Deprecate RUNKS cmdline option. (sbueno+anaconda)
2604     - Re-order the tz's in text mode to mirror the graphical order.
2605     (sbueno+anaconda)
2606     - Fix an issue with bad NFS info specified in source spoke. (sbueno+anaconda)
2607     - Warn if software selection size exceeds available space. (sbueno+anaconda)
2608     - Fix q for quit issue in text mode (#997405) (sbueno+anaconda)
2609     - Change the accelerator key for Add DASD label. (sbueno+anaconda)
2610     - Add dialog box for adding DASDs. (sbueno+anaconda)
2611     - Add a button for adding an ECKD DASD. (sbueno+anaconda)
2612     - Change a confusing string in TUI NFS configuration screen. (#1057690)
2613     (sbueno+anaconda)
2614     - NM-wifi is missing on s390(x) (dan)
2615    
2616     * Wed Oct 01 2014 Samantha N. Bueno <sbueno+anaconda@redhat.com> - 21.48.8-1
2617     - Show help also when alt+F1 is pressed (mkolman)
2618     - Support display of the custom mnemonics on the help button (mkolman)
2619     - Activate the built-in help when F1 is pressed (mkolman)
2620     - Specify help file names for hubs and spokes (mkolman)
2621     - Add a help button to every Anaconda screen (mkolman)
2622     - Don't attempt terminal size detection on the s390 (#1145065) (mkolman)
2623     - Fix Welcome spoke not showing up during kickstart installation (#1147943)
2624     (mkolman)
2625     - Clear the list of watched PIDs before exiting. (#1146708) (dshea)
2626     - Avoid the possibility of size variables being unset (#1146585) (dshea)
2627     - Adapt to corrected interpetation of logvol --percent. (#1146156) (dlehman)
2628     - Handle cancellation of new container creation. (dlehman)
2629     - Reflect previous custom/autopart selection in the storage spoke. (#1144520)
2630     (dlehman)
2631     - Clear out custom storage ksdata after first attempt to apply it. (#1144560)
2632     (dlehman)
2633     - Pass size as Size when adjusting container after device removal. (#1141707)
2634     (dlehman)
2635     - Handle 0's returned by Gdk (dshea)
2636     - When running on HiDPI monitors, scale anaconda by a factor of 2 (dshea)
2637     - Highlight languages in langsupport that contain selected locales (dshea)
2638     - Add a wrapper function for GtkTreeViewColumn.set_cell_data_func (dshea)
2639     - Clear the kickstart password if cleared by the user (#1133185) (dshea)
2640     - Remove inactive languages from LINGUAS. (dshea)
2641     - Use suggested-action on more buttons (#1131254) (dshea)
2642     - Filter empty comps groups from both specific and generic lists (dshea)
2643     - Use one thread for payload setup. (dshea)
2644    
2645     * Wed Sep 17 2014 Samantha N. Bueno <sbueno+anaconda@redhat.com> - 21.48.7-1
2646     - Set flags.rescue_mode not anaconda.rescue (#1101341) (amulhern)
2647    
2648     * Thu Sep 11 2014 Samantha N. Bueno <sbueno+anaconda@redhat.com> - 21.48.6-1
2649     - Update tx config (sbueno+anaconda)
2650     - Use only the digits from productVersion (bcl)
2651    
2652     * Tue Sep 09 2014 Samantha N. Bueno <sbueno+anaconda@redhat.com> - 21.48.5-1
2653     - Revert productName repo name change (#1128474) (bcl)
2654     - Do not try to disable no firstboot services (#1139621) (vpodzime)
2655     - Let finding install classes be more flexible for Fedora (#1138820). (clumens)
2656    
2657     * Thu Sep 04 2014 Samantha N. Bueno <sbueno+anaconda@redhat.com> - 21.48.4-1
2658     - Use first part of Product for UEFI entry (#1128474) (bcl)
2659     - Use first part of Product as repo name (#1128474) (bcl)
2660     - makeupdates: Report git diff errors (bcl)
2661    
2662     * Wed Aug 27 2014 Samantha N. Bueno <sbueno+anaconda@redhat.com> - 21.48.3-1
2663     - Prevent crashes due to accessing X server from multiple threads (#1134507)
2664     (vpodzime)
2665     - Remove anaconda_make_pixbuf (dshea)
2666     - Require anaconda-widgets from anaconda-widgets-devel (dshea)
2667     - Run /sbin/ldconfig when installing or uninstalling anaconda-widgets (dshea)
2668     - Remove the shebang from anaconda.py (dshea)
2669     - Exclude the compiled text and rescue files from anaconda-core (dshea)
2670     - Update our copy of the GPL (dshea)
2671     - Rearrange the entry, example and tip on Advanced User dialog (vpodzime)
2672     - Write storage after liveimg install (#1080396) (bcl)
2673     - Add some sanity checking to live payload (vpodzime)
2674     - Use blivet's getFreeSpace for limitting automatic swap size (vpodzime)
2675     - Ask users for enough space right at the first time (#876916) (vpodzime)
2676     - Don't require user creation when root is locked (#1030626) (bcl)
2677    
2678     * Fri Aug 01 2014 Samantha N. Bueno <sbueno+anaconda@redhat.com> - 21.48.2-1
2679     - Mark zRAM devices as protected and ignore them (vpodzime)
2680     - Make storage sanity check aware of base RAM requirements (#1123466)
2681     (vpodzime)
2682     - Move sanityCheck code to anaconda's codebase (vpodzime)
2683     - Do not multiply/divide RAM sizes by 1024 back and forth (vpodzime)
2684     - Raise exception if reading lines from a killed process (vpodzime)
2685     - Use zRAM swap up to 2 GB of RAM (vpodzime)
2686     - RAM requirements depend on squashfs.img's origin (vpodzime)
2687    
2688     * Wed Jul 23 2014 Samantha N. Bueno <sbueno+anaconda@redhat.com> - 21.48.1-1
2689    
2690     * Wed Jul 16 2014 Brian C. Lane <bcl@redhat.com> - 21.48-1
2691     - Fix the custom accelerators in custom partitioning (#1118999) (dshea)
2692     - Revert "Reset dnf package sack" (bcl)
2693     - Ignore the home directory setting if no change was requested (#1119900)
2694     (dshea)
2695     - Set an upper limit on uids and gids. (dshea)
2696     - Remove the "Create a home directory" checkbox (dshea)
2697     - Fix a typo: inital -> initial (mkolman)
2698     - Don't create the configured.ini file (#1119166) (mkolman)
2699     - zRAM swap for Anaconda (vpodzime)
2700     - Split kickstart arg handling (bcl)
2701     - Update icon names used within python code. (dshea)
2702     - Add a check for whether icons used in glade files are valid (dshea)
2703     - Load icons by name instead of stock-id. (dshea)
2704     - Remove extra list() call with no effect (vpodzime)
2705     - Add NetworkManager-wifi dependency for the GUI subpackage (#1111417)
2706     (mkolman)
2707     - Python's octals changed; mount's didn't. (pjones)
2708     - Add a basic test for ostree-based installs. (clumens)
2709     - Print out exceptions at log level critical. (clumens)
2710     - Rename environment variables in run_gui_tests.sh. (clumens)
2711     - Rename gui/runtest.sh to fit in with the other test names. (clumens)
2712     - Write the grub config even on errors (#1114774) (bcl)
2713    
2714     * Fri Jul 11 2014 Brian C. Lane <bcl@redhat.com> - 21.47-1
2715     - Fix references to requiredPackages (bcl)
2716     - Drop anaconda. prefix from copied logs (bcl)
2717     - dnf should put its logs in /tmp/ (bcl)
2718     - Make sure the software listboxes are shown (bcl)
2719     - dnf should report that it supports Closest Mirror (bcl)
2720     - Do not prefer /tmp for dnf downloads (bcl)
2721     - Reset dnf package sack (bcl)
2722     - Fix dnf base repo setup to fall back to default gracefully (bcl)
2723     - Move addDriverRepo into PackagePayload class (bcl)
2724     - Rename some dnf items to match yum (bcl)
2725     - rpmostreepayload: Drop selinux-ensure-labeled call (walters)
2726     - Run anaconda in fullscreen whenever possible. (dshea)
2727     - Correct the constant used with gtk_widget_set_state_flags (dshea)
2728     - Restore some CSS rules from the pre-3.13 Adwaita theme. (dshea)
2729     - Adapt to changes in blivet.udev interface. (amulhern)
2730     - Bump blivet version to pick up blivet.udev interface changes. (amulhern)
2731     - Use the enlightbox context manager for the add network device dialog
2732     (mkolman)
2733     - DNFPayload: do not add group 'core' twice. (ales)
2734     - Remove the window property from UIObject. (dshea)
2735     - Unravel the Hub and Spoke classes. (dshea)
2736     - Fix --kickstart option (bcl)
2737     - Bump up the required pykickstart version (vpodzime)
2738     - Use GtkRevealer for widget hiding in storage spoke (mkolman)
2739     - rpmostreepayload: create /var/spool/mail required when adding user (rvykydal)
2740     - rpmostreepayload: Don't recreateInitrds for this payload (walters)
2741     - Don't use geolocation when installing with kickstart (mkolman)
2742    
2743     * Wed Jul 02 2014 Brian C. Lane <bcl@redhat.com> - 21.46-1
2744     - Ignore an error from pylint incorrectly analyzing types in dbus-python
2745     (dshea)
2746     - Remove the Lightbox widget (dshea)
2747     - Implement the lightbox in MainWindow (dshea)
2748     - Added a method to create new GdkPixbufs from in-memory data (dshea)
2749     - Add a delete-event handler for the main window (dshea)
2750     - Add a window to manage Anaconda screen transitions. (dshea)
2751     - Add a class BaseStandalone. (dshea)
2752     - Increased the version of anaconda-widgets to 3.0 (dshea)
2753     - Use globs for the anaconda widgets library paths (dshea)
2754     - Remove the custom accelerators from custom storage. (dshea)
2755     - Add a couple more deprecation warning ignores (dshea)
2756     - Use a dict for string substitutions in a /boot/efi message. (clumens)
2757     - Use the right index for selecting region (#1114234) (vpodzime)
2758     - Add autopart --fstype support (#1112697) (bcl)
2759     - Patches to allow /boot/efi to be RAID1 (#788313) (amulhern)
2760     - Bump blivet version for succeeding commit. (amulhern)
2761     - Map our log levels to syslog log levels (bcl)
2762     - makeupdates: Put systemd files under /usr/lib/ (bcl)
2763     - Make octal literals Python 3 compatible (mkolman)
2764     - Use the built-in next() function for generators (mkolman)
2765     - Make reduce function usage Python 3 compatible (mkolman)
2766     - Use createrepo_c in place of createrepo (mkolman)
2767    
2768     * Fri Jun 27 2014 Brian C. Lane <bcl@redhat.com> - 21.45-1
2769     - Switch to tty1 if we get an exception before meh is setup (dshea)
2770     - Remove surprises from X startup. (dshea)
2771     - Import KS_MISSING_IGNORE from pykickstart.constants in DNF payload (mkolman)
2772     - Import Pykickstart constants directly (mkolman)
2773     - Switch error exit codes to 1 (bcl)
2774     - Add help texts for the remaining Anaconda options (mkolman)
2775    
2776     * Wed Jun 25 2014 Brian C. Lane <bcl@redhat.com> - 21.44-1
2777     - Fix storage checker docstring (bcl)
2778     - Modify --dirinstall to take a path (bcl)
2779     - Drop ROOT_PATH, add a method to set it (bcl)
2780     - Call setUpBootLoader in custom autopart (#1086811) (bcl)
2781     - Remove the noipv6 Anaconda option (mkolman)
2782     - Remove the -s/--script Anaconda option (mkolman)
2783     - Make rescue_mode part of flags, hence more publicly available (#1090009)
2784     (amulhern)
2785     - Check host filesystem space for dirinstall (bcl)
2786     - Remove the viewport from the addon repo tree view (dshea)
2787     - Add a check for GtkScrollables contained in GtkViewports (dshea)
2788     - Enable rubber-banding in the disk tree views (dshea)
2789     - Make the configure mount point dialog taller. (#924182) (dshea)
2790     - Add the disk TreeViews directly to the scrolled windows (dshea)
2791     - Opened up custom_storage_helpers.glade and hit Save (dshea)
2792     - Add help texts for more Anaconda CLI options (mkolman)
2793     - Remove the targetarch Anaconda option (mkolman)
2794     - Add anaconda_options.txt to makeupdates (dshea)
2795     - Allow the location of anaconda_options.txt to be overridden (dshea)
2796     - Remove an unused import. (dshea)
2797     - Remove the headless Anaconda option (mkolman)
2798    
2799     * Thu Jun 19 2014 Brian C. Lane <bcl@redhat.com> - 21.43-1
2800     - Allow NFS addon repos (#985080) (dshea)
2801     - Add --disklabel support to clearpart (#1078537) (bcl)
2802     - Replace redundant ifs with direct assignments to the anaconda variables
2803     (mkolman)
2804     - Replace ifs when assigning option values to flags where possible (mkolman)
2805     - Use True/False instead of 1/0 for flags (mkolman)
2806     - Store auto gui results in the same directory as the test itself. (clumens)
2807     - Use whatever network device was used to start installation. (clumens)
2808     - Ignore more deprecation warnings. (dshea)
2809     - Add help texts for the dmraid and nodmraid options (mkolman)
2810     - Use True instead of 1 for the dmraid flag default value (mkolman)
2811     - Add help texts for the ibft and noibft options (mkolman)
2812     - Use True instead of 1 for the ibft flag default value (mkolman)
2813     - Remove the iscsi and noiscsi options (mkolman)
2814     - Add a new log level 'lock' for _yum_lock (bcl)
2815     - Replace uses of gtk-missing-image (dshea)
2816     - Improve the SpokeSelector icon error reporting. (dshea)
2817    
2818     * Thu Jun 12 2014 Brian C. Lane <bcl@redhat.com> - 21.42-1
2819     - Adjust the ui package paths to find hubs and spokes (bcl)
2820     - Change emphasis from subvolumes to snapshots in removal warning. (dlehman)
2821     - Reflect the fact that some block devices cannot be reformatted. (dlehman)
2822     - Use StorageDevice.direct to detemine if a device is directly accessible.
2823     (dlehman)
2824    
2825     * Wed Jun 11 2014 Brian C. Lane <bcl@redhat.com> - 21.41-1
2826     - Use /usr/lib* in updates images. (dshea)
2827     - Fix the paths we check for spokes. (sbueno+anaconda)
2828     - Remove the kbdtype option (mkolman)
2829     - Remove the noipv4 option (mkolman)
2830     - Remove the autostep option (mkolman)
2831     - Remove the disused nofb option (mkolman)
2832     - Remove the module option (mkolman)
2833    
2834     * Tue Jun 10 2014 Brian C. Lane <bcl@redhat.com> - 21.40-1
2835     - fedora-welcome: Correct an icon name after the switch to Adwaita
2836     (kalevlember)
2837     - Pass/check displaymode in collect_categories and collectCategoriesAndSpokes.
2838     (sbueno+anaconda)
2839     - Add help texts to some Anaconda CLI options (mkolman)
2840     - Don't install implicitly added but explicitly excluded packages (#1105013)
2841     (vpodzime)
2842     - Update configure, make files, and PO files with new category changes.
2843     (sbueno+anaconda)
2844     - Fix up collectCategoriesAndSpokes function. (sbueno+anaconda)
2845     - Update all relevant UI files with new category path. (sbueno+anaconda)
2846     - Move categories to pyanaconda.ui.categories. (sbueno+anaconda)
2847     - Allow testing a regular install from the live environment. (clumens)
2848     - Make sure /var/log/anaconda gets copied under the right root. (clumens)
2849     - format.setup in blivet takes only kwargs. (clumens)
2850     - Tweak spacing in the other storage options grid. (clumens)
2851     - Remove the dlable option (mkolman)
2852     - change default for grub2 save_entry to 0 (gczarcinski)
2853     - Revert "Refresh after checkbox clicked (#1074188)" (dshea)
2854     - Move assureLogoImage to GraphicalUserInterface (#1102238) (dshea)
2855     - If we cannot activate keyboard, at least populate the missing items
2856     (#1104541) (vpodzime)
2857     - network: generate dracut arguments also for IPADDRn ifcfg values (#1103571)
2858     (rvykydal)
2859     - Memoize the results for *RaidLevelsSupported() functions (amulhern)
2860     - RAID related changes for custom spoke. (amulhern)
2861     - Bump required blivet version. (amulhern)
2862     - Make parse-kickstart aware of the %%addon section (#1083002) (vpodzime)
2863     - Revert "Work around a parsing bug in GtkBuilder" (dshea)
2864     - Fix a typo in one of the bootloader installation warning messages (#1103410)
2865     (mkolman)
2866     - Don't require network in standalone spoke for media installs (#1066807)
2867     (rvykydal)
2868    
2869     * Mon Jun 02 2014 Brian C. Lane <bcl@redhat.com> - 21.39-1
2870     - eu_ES has been dropped from the supported languages (bcl)
2871     - Change 'elif encrypted' statement to 'else' statement. (amulhern)
2872     - Work around a parsing bug in GtkBuilder (dshea)
2873     - Don't uppercase the size values in the disk shopping cart. (clumens)
2874     - Display the sentence about being able to reuse partitions even without roots.
2875     (clumens)
2876     - Allow a couple more keyboard shortcuts on the custom part spoke. (clumens)
2877     - Reword the close button on the software spoke's error dialog. (clumens)
2878     - Fix up quoting around passing args to anaconda in the gui test. (clumens)
2879     - Don't hide a serious issue (vpodzime)
2880     - Move autopart choices to one place and use them in both GUI and TUI
2881     (vpodzime)
2882     - Define default autopart type as a constant (vpodzime)
2883     - Use enumerate() instead of getting indices of iterated items (vpodzime)
2884     - Preserve net.ifnames cmdline arg (#1102401) (bcl)
2885     - Revert the dialog sizing chunk from resize.glade. (clumens)
2886     - Update GUI tests for changes in gtk/atk/anaconda/whatever. (clumens)
2887     - Fix gui/runtest.sh to work under either "make check" or being run manually.
2888     (clumens)
2889     - Add a -c argument to the ksflatten invocation. (clumens)
2890     - Do basic logging setup when short circuiting the normal Anaconda init
2891     (mkolman)
2892     - Fix boot option warning string formatting (mkolman)
2893     - always rescan for vmlinuz if rescueKernelList (gczarcinski)
2894     - move new-kernel-pkg rpmposttrans to end of install (gczarcinski)
2895     - allow /boot on btrfs subvol or filesystem (gczarcinski)
2896     - Allow /boot on LVMlv (gczarcinski)
2897    
2898     * Wed May 28 2014 Brian C. Lane <bcl@redhat.com> - 21.38-1
2899     - Parse boot options before parsing CLI options (#1101341) (mkolman)
2900     - Check that bootloader devices are configured before validating (#1100928)
2901     (dshea)
2902     - network: use IpInterface only for activated devices (#1101781) (rvykydal)
2903     - Enable LVM Thin Provisioning in text mode (vpodzime)
2904     - Remove the executable bit from anaconda.spec.in. (clumens)
2905     - Fix the nm test for big-endian results (dshea)
2906     - Fix issues with auto* and version.py (dshea)
2907     - Allow file:// url handler in --repo arg (bcl)
2908     - Ignore deprecation warnings for atk_role_register (dshea)
2909     - Handle renames in makeupdates. (pjones)
2910     - Move Anaconda version detection from isys to Python code (mkolman)
2911     - network: use IpInterface instead of Interface (#1058906, #1029214) (rvykydal)
2912     - network: don't modify network config for dirInstall and imageInstall
2913     (rvykydal)
2914     - network: remove redundant image install guard (rvykydal)
2915     - network: add first tests for nm.py (rvykydal)
2916     - network: consolidate setNetworkOnbootDefault (rvykydal)
2917     - Set ONBOOT=yes for the device used for installation (#1002544). (rvykydal)
2918     - Use proper data for autopart type initialization (vpodzime)
2919     - Line up the right side of the FCOE dialog. (clumens)
2920     - Use default_width and _height on dialogs instead of _request. (clumens)
2921     - Remove the border around the refresh storage dialog's button. (clumens)
2922     - Short-circuit initialization when printing out Anaconda version (mkolman)
2923     - Make print statements Python 3 compatible (mkolman)
2924     - Fix the handling of set_const options pulled in from the boot cmdline (dshea)
2925     - Fix the modify software tooltip on the installation options dialogs.
2926     (clumens)
2927     - Better visually distinguish TUI spokes states (vpodzime)
2928     - Reset the text direction as soon as the locale is changed (dshea)
2929     - Show errors from the displayed mountpoint when exiting the custom spoke
2930     (dshea)
2931     - Check that container names input by the user are valid (dshea)
2932    
2933     * Tue May 20 2014 Brian C. Lane <bcl@redhat.com> - 21.37-1
2934     - Chain up to parent size_allocate functions in our standalone widgets.
2935     (clumens)
2936     - Format the help text to properly fit to the terminal window (mkolman)
2937     - Call getPossiblePhysicalExtents() only once (vpodzime)
2938     - Default PE size to blivet's default when requested from kickstart (#1098139)
2939     (vpodzime)
2940     - A couple of anaconda whitespace fixes (mkolman)
2941     - Replace the deprecated has_key() by in (mkolman)
2942     - Disable pylint errors on NetworkData in the new network_test.py. (clumens)
2943     - Tweak borders on the filter UI. (clumens)
2944     - network: add tests (rvykydal)
2945     - network: don't use ifcfg PREFIX when generating ipv6 dracut args (rvykydal)
2946     - network: cleanup - remove ksdevice variable (rvykydal)
2947     - Horizontally center the user creation spoke contents. (clumens)
2948     - Un-indent the reclaim space checkbox. (clumens)
2949     - Remove the RAID page from the filter UI. (clumens)
2950     - install -> installation in a string on the source spoke. (clumens)
2951     - Switch Anaconda to argparse (mkolman)
2952     - rpmostreepayload: Use systemd-tmpfiles rather than handrolling mkdir
2953     (walters)
2954     - Add some padding to the custom partitioning note. (dshea)
2955     - Wrap the custom partitioning note (#1031850) (dshea)
2956     - Make an ostree string easier for translators to deal with. (clumens)
2957     - Fix the gettext warnings test for VPATH builds (dshea)
2958     - network: fix crash on empty ksdevice boot option (#1096846) (rvykydal)
2959     - Add RPMOSTreePayload (walters)
2960     - bootloader: Allow extlinux loader configuration to handle RPMOSTreePayload
2961     case (walters)
2962     - install: Handle distinct physical root/sysroot (walters)
2963     - parse-kickstart: drop "mtu=" args (wwoods)
2964     - Drop workaround for old dracut BOOTIF+ip problem (wwoods)
2965     - Fix behavior (and docs) for ks=nfs:<path>/ (#1094645) (wwoods)
2966     - Allow non-ASCII characters in passwords (#960837) (dshea)
2967     - Use a separate label for passphrase warnings. (dshea)
2968     - Move more of the passphrase dialog into the glade file. (dshea)
2969     - Don't add redundant grub installs if stage1 is not a disk (dshea)
2970     - Let the user continue on bootloader errors (#1006304) (bcl)
2971     - Fix the parsing of NFS addon URLs (#966240) (dshea)
2972     - Remove redundant import (mkolman)
2973     - Don't overwrite function argument when parsing help texts (mkolman)
2974     - Return CLI help text at once (mkolman)
2975     - Fix typo in previous commit adjusting to blivet API change. (dlehman)
2976     - Adjust for movement of functions from examples into blivet proper. (dlehman)
2977    
2978     * Thu May 08 2014 Brian C. Lane <bcl@redhat.com> - 21.36-1
2979     - Switch to adwaita-icon-theme (kalevlember)
2980     - Hook up the TUI categories to autoconf/make. (#1095220) (dshea)
2981     - Fix the object type specifying argument name for findActions (vpodzime)
2982     - Remove keyword args 'ignoreErrors' from umountFilesystems() call. (amulhern)
2983     - Updates for new blivet.size.Size.__new__ interface. (amulhern)
2984     - Change uses of 'format' keyword param to 'fmt' keyword param (amulhern)
2985     - Update devicetree.findActions invocations to match blivet interface change
2986     (amulhern)
2987     - Bump blivet version to ensure next four patches get the right interface.
2988     (amulhern)
2989    
2990     * Mon May 05 2014 Brian C. Lane <bcl@redhat.com> - 21.35-1
2991     - Use format strings in the new kickstart error message translations. (clumens)
2992     - Mark kickstart errors as translatable, and hopefully make them more useful
2993     too. (clumens)
2994     - install: Move Payload postInstall() after bootloader (walters)
2995     - iutil: Transparently redirect anyone who asks root=/mnt/sysimage to sysroot
2996     (walters)
2997     - Fix the way categories are handled in text mode. (sbueno+anaconda)
2998     - Move GUI-specific helper classes to a separate module (#1091542) (dshea)
2999     - Fix license in parse-kickstart (mkolman)
3000     - main: Set flags.extlinux if extlinux is used in interactive-defaults.ks
3001     (walters)
3002     - anaconda.service: Set GIO_USE_VFS=local (walters)
3003     - Use a gettext context where necessary when retranslating (#1091207) (dshea)
3004     - Update makebumpver for python-bugzilla 1.0.0 (bcl)
3005     - Skip source and software spoke in text live installations (#1092763) (bcl)
3006     - Add correct kernel params if rootfs is btrfs on s390x. (#874622)
3007     (sbueno+anaconda)
3008     - Don't crash on anaconda-yum output containing multiple colons (#1092441)
3009     (mkolman)
3010     - Revert chrooting when setting user/root password (vpodzime)
3011     - network: fix device configuration in text mode (#1058336) (rvykydal)
3012     - Change order in which packages/groups are selected/excluded (#1091952)
3013     (vpodzime)
3014     - Check the correct button when saving changes in the Custom spoke (#1090786)
3015     (vpodzime)
3016     - Fix unloading modules in driver-updates (#1085099) (wwoods)
3017     - Re-saved some of the glade files with a newer version of glade. (dshea)
3018     - Add viewports for the ListBoxes in the software spoke. (dshea)
3019     - Extend format string checks to translated format strings. (dshea)
3020     - Fix typo in nm_is_connected method check. (rvykydal)
3021     - iutil: Introduce getSysroot()/getTargetPhysicalRoot(), use instead of
3022     ROOT_PATH (walters)
3023    
3024     * Thu Apr 24 2014 Brian C. Lane <bcl@redhat.com> - 21.34-1
3025     - Improve the "adding yum repo" message structure (mkolman)
3026     - Fix missing log message about adding a repository (#1089297) (mkolman)
3027     - Ignore use of eval warnings. (dshea)
3028     - Specify string format arguments as logging function parameters (dshea)
3029     - New encrypted state is the dialog's encrypted attribute (vpodzime)
3030     - Use human readable sizes with two decimal spaces in the GUI (vpodzime)
3031     - Make the LUKS unlock callback a timed action (vpodzime)
3032     - Hitting ENTER in the LUKS passwd entry should click the Unlock button
3033     (vpodzime)
3034     - Block leaf device encryption if container is encrypted consistently
3035     (vpodzime)
3036     - Do not remove the replacing item, remove the replaced one instead (vpodzime)
3037     - Give include_btrfs variable a better name (vpodzime)
3038     - Make the _resolve_btrfs_restrictions method's code nicer (vpodzime)
3039     - Refactor the btrfs magic into a separate method (vpodzime)
3040     - Switch the condition in long if-else statement (vpodzime)
3041     - Give an opaque condition a better name explaining its real meaning (vpodzime)
3042     - Refactor out the code for removing empty parents (vpodzime)
3043     - Use the (vpodzime)
3044     - Refactor out the code for adding device/mountpoint into a method (vpodzime)
3045     - Relabel /home partition if using and existing one (#1087736) (vpodzime)
3046     - Don't forget to call os._exit() in the child process (vpodzime)
3047     - users: Add root= keyword argument to set{User,Root}Password (walters)
3048     - users: Deduplicate code to fork()+chroot() (walters)
3049     - gui/spokes/software: Enable iff payload is PackagePayload (walters)
3050     - Use descriptive pylint messages instead of numbers. (clumens)
3051     - Add input validation to the source spoke. (dshea)
3052     - Remove the tests for duplicate and invalid repo names (dshea)
3053     - Expand the proxy URL validation. (dshea)
3054     - Convert the repository name test into a regex (dshea)
3055     - Add a remove_check method for InputCheckHandler. (dshea)
3056     - Use ID columns in the protocol combo boxes (dshea)
3057     - Added a link to a bug about the user data in glade problem. (dshea)
3058     - Remove the top and bottom padding from source spoke action area (dshea)
3059     - Re-add a false-positive for the GLib module (dshea)
3060    
3061     * Thu Apr 17 2014 Brian C. Lane <bcl@redhat.com> - 21.33-1
3062     - Add an option to copy translation files to an updates.img (dshea)
3063     - Set the selinux state from the command line (#784828) (dshea)
3064     - Remove a whole bunch of pylint false positives (dshea)
3065     - Ignore more informational messages printed by pylint pragmas (dshea)
3066     - Use more wildcards in the tests dist_ variable (dshea)
3067     - Make sure the idx variable is used instead of the old found variable
3068     (vpodzime)
3069     - Disable a false positive from pylint (dshea)
3070     - Only run dialogs in the enlightbox context (vpodzime)
3071     - Separate code for finding item in containers combo and processing it
3072     (vpodzime)
3073     - Check Update Settings button sensitivity when saving changes in one place
3074     (vpodzime)
3075     - Only save changes if needed when adding mountpoint (vpodzime)
3076     - No need to call bool() on a boolean expression result (vpodzime)
3077     - Give names to some magic tuples, make them reusable and reuse them (vpodzime)
3078     - Add DEVICE_TYPE_DISK's text description to the mapping (vpodzime)
3079     - Move a few constants and mappings to the storage_utils module (vpodzime)
3080     - Split long label's string into two lines (vpodzime)
3081     - Don't rely on the ordering of autopart types in the combobox (vpodzime)
3082     - Only save changes if there are any changes to be saved (vpodzime)
3083     - Add device type constants to the device type combobox's store (vpodzime)
3084     - Change some anaconda-yum DEBUGs to be more informative (bcl)
3085     - Change Proxy Add Button to Ok (bcl)
3086     - Display a message for missing required packages and groups (#1064565) (dshea)
3087     - Fix issues with the errorHandler callback arguments (dshea)
3088    
3089     * Thu Apr 10 2014 Brian C. Lane <bcl@redhat.com> - 21.32-1
3090     - Refactor the code setting up the device type combobox a method (vpodzime)
3091     - Rename 'swap' variable to 'is_swap' to better express its meaning (vpodzime)
3092     - Refactor out the code setting up the fstype combobox into a method (vpodzime)
3093     - Refactor the code updating info about device container into a method
3094     (vpodzime)
3095     - Remove the default None value from the addPage's cb argument (vpodzime)
3096     - Make on_updates_settings_clicked timed callback (vpodzime)
3097     - Rename the callback for updating mountpoint settings (vpodzime)
3098     - Hook up the GUI test so it's run as part of "make check". (clumens)
3099     - Skip running pylint on files containing "skip-file". (clumens)
3100     - Add comments to the kickstart tests. (clumens)
3101     - Add the beginnings of an automated GUI test suite. (clumens)
3102     - Add accessibility information to the user spoke. (clumens)
3103     - Add accessibility information to the root password spoke. (clumens)
3104     - Add accessibility information to the progress hub. (clumens)
3105     - Add accessibility information to most of the widgets on the storage spoke.
3106     (clumens)
3107     - Add enough accessibility information to the network spoke for livecds.
3108     (clumens)
3109     - Add accessibility information to the keyboard spoke. (clumens)
3110     - Add accessibility information to the date & time spoke. (clumens)
3111     - Add a script and base kickstart file for making a dogtail-enabled livecd.
3112     (clumens)
3113     - Add accessibility information to the welcome spoke and summary hub. (clumens)
3114     - Add accessibility information to some of our widgets. (clumens)
3115     - Don't use dhcp ntpservers for dir or image installation (bcl)
3116     - Implement and use decorator for logging UI storage actions (vpodzime)
3117     - Refactor out the code doing device reformat into a function (vpodzime)
3118     - Refactor out the code handling encryption change into a function (vpodzime)
3119     - Fix variable name when logging new fstype (vpodzime)
3120     - Make it possible to override translation domain in GUIObjects (#1040240)
3121     (mkolman)
3122     - Refactor out the code for handling device size change into a function
3123     (vpodzime)
3124     - Refactor out the code for bounding size into a function (vpodzime)
3125     - Refactor code for reverting device reformat into a function (vpodzime)
3126     - Make the code changing an existing device more compact (vpodzime)
3127     - Comment the part of the code changing an existing device (vpodzime)
3128     - Do device change logging in one place where possible (vpodzime)
3129     - Pass information about old and new device as a dictionary (vpodzime)
3130     - Move code attempting to replace device into a separate function (vpodzime)
3131     - Mountpoint validation should only care about the new fs type (vpodzime)
3132     - Make size properties refreshing reused code (vpodzime)
3133     - Use generator instead of list for auxiliary old_disk_names variable
3134     (vpodzime)
3135     - Remove and unused variable in Custom spoke (vpodzime)
3136     - Refactor mountpoint configuration validation out from _save_right_side
3137     (vpodzime)
3138     - Don't overload selectorFromDevice function (vpodzime)
3139     - Use dir_tree_map for the cleanPStore function (vpodzime)
3140     - Check xconfig before setting the installed displaymode (dshea)
3141     - DNFPayload: call close() when done with the Base. (ales)
3142     - Do not try to get "" translated (vpodzime)
3143     - Use for-cycle else: branch instead of extra variable (vpodzime)
3144     - Have mountpoint descriptions defined in a dictionary (vpodzime)
3145     - Uppercase global constants in the Custom spoke (vpodzime)
3146     - Use cannonical RAID level names when populating RAID stores (vpodzime)
3147     - No RAID level (RAID level None) is a valid choice for LVM(ThP) (vpodzime)
3148     - LVM Thin Provisioning supports the same RAID levels as plain LVM (vpodzime)
3149     - Only block the password/user spokes if data was given in kickstart (vpodzime)
3150     - Disable a pylint error message for now. (clumens)
3151     - Suppress selinux error log when using default (#1083239) (bcl)
3152     - Use the AnacondaWidgets python gi-overrides for pylint (dshea)
3153    
3154     * Wed Apr 02 2014 Brian C. Lane <bcl@redhat.com> - 21.31-1
3155     - Only install consolehelper link on livearches (bcl)
3156    
3157     * Wed Apr 02 2014 Brian C. Lane <bcl@redhat.com> - 21.30-1
3158     - Add support ppc64le (hamzy)
3159     - Validate proxy URLs (dshea)
3160     - Provide feedback for invalid NTP hostnames. (dshea)
3161     - Use GUIDialogInputCheckHandler in the advanced user dialog (dshea)
3162     - Add a new InputCheck status for silent failures. (dshea)
3163     - Add an InputCheckHandler subclass for dialogs. (dshea)
3164     - Generalized and improved the proxy URL parsing regex (dshea)
3165     - Update makebumpver for the newer python-bugzilla on rawhide. (clumens)
3166     - network: don't crash on virtual devices turned off (#1080640) (rvykydal)
3167     - network: don't pop HWADDR twice for vlan on s390 (#1061646) (rvykydal)
3168     - Make safe_dbus module's functions less 'safe' (vpodzime)
3169     - Add a list of cmdline args that append instead of replace (#1073130) (bcl)
3170     - safe_dbus: Don't export DBus connection addresses as variables (walters)
3171    
3172     * Wed Mar 26 2014 Brian C. Lane <bcl@redhat.com> - 21.29-1
3173     - Add a Makefile target to create a set of empty .po files. (dshea)
3174     - os.path.exists -> os.path.lexists when checking for authconfig. (clumens)
3175     - Add support for tarfiles to liveimg kickstart command (bcl)
3176     - mountExistingSystem raises an exception with dirty FS (#1080210) (vpodzime)
3177     - Don't do yum lock logging when using updates.img (vpodzime)
3178     - Pass Size(0) instead of 0 to the ContainerDialog if no size is given
3179     (vpodzime)
3180     - Update the BaseWindow and HubWindow example UI fragments (dshea)
3181     - Convert GtkHBox and GtkVBox to GtkBox. (dshea)
3182     - Fix keyboard accelerator collisions from former stock buttons (dshea)
3183     - Set the secret agent icon in the glade file (dshea)
3184     - Remove stock labels and icons. (dshea)
3185     - Run the pykickstart version test on the commands in parse-dracut (dshea)
3186     - Don't reimport os - it's imported very early on. (clumens)
3187     - Use an alternative image if logo is missing (mkolman)
3188     - Update parse-kickstart for the new bootloader command. (clumens)
3189     - Make sure the error info message starts on a new line (vpodzime)
3190     - Define two env variables removing useless warnings (vpodzime)
3191     - Check boot args for None (#1075918) (bcl)
3192     - Revert "Enable make check in %%check and add the necessary BuildRequires"
3193     (dshea)
3194     - Fix the argument list passed to the payloadInitialize thread (#1079628)
3195     (dshea)
3196     - Fix filtering the _storage_playground out (vpodzime)
3197     - Sync up step counts in install.py with reality. (clumens)
3198     - Avoid the "unable to init server" message. (dshea)
3199     - Do not attempt to run authconfig if it doesn't exist. (clumens)
3200     - Allow skipping installation of the core group, if asked for in kickstart.
3201     (clumens)
3202     - Drop the vconsole.font boot arg (#1074113) (vpodzime)
3203    
3204     * Thu Mar 20 2014 Brian C. Lane <bcl@redhat.com> - 21.28-1
3205     - Get the DBus session bus address in a method (dshea)
3206     - Specify string format arguments as logging function parameters (dshea)
3207     - Inhibit the screen saver on live installs (#928825) (dshea)
3208     - Handle the dbus method call not returning anything. (dshea)
3209     - Convert errors raised during dbus connection to DBusCallError (dshea)
3210     - driverdisk: Show selection menu for network driver isos (#1075918) (bcl)
3211     - Write a modprobe blacklist (#1073130) (bcl)
3212     - Append cmdline arg values in BootArgs (#1073130) (bcl)
3213     - Wait for other threads to finish before sending ready (#1075103) (bcl)
3214     - set proxy related environmental variables (#854029) (bcl)
3215     - Fix pylint error in yumpayload. (sbueno+anaconda)
3216     - The custom spoke requires mountPointStore and mountPointCompletion, too.
3217     (clumens)
3218     - Make the lists of files to check consistent across all checks. (dshea)
3219     - Fix error handling in cmdline mode. (#1034773) (sbueno+anaconda)
3220     - Don't create bootloader entries for kdump initrd and kernel. (#1036086)
3221     (sbueno+anaconda)
3222     - Add a setting to network.py that got left out of the cherry-pick. (clumens)
3223     - Enable make check in %%check and add the necessary BuildRequires (atodorov)
3224     - Make it obvious user is going to begin installation. (#975793)
3225     (sbueno+anaconda)
3226     - Move libtimezonemap requires to the anaconda-gui subpackage (vpodzime)
3227     - network: apply ks configuration to devices activated in initramfs (#1037605)
3228     (rvykydal)
3229     - Add support for kickstart --interfacename for vlans (#1061646) (rvykydal)
3230     - network: handle race condition of disappearing active connection (#1073424)
3231     (rvykydal)
3232     - Convert iter from filter model iter to backing store iter (#1074188)
3233     (amulhern)
3234     - Provide ways in kickstart to skip kernel and bootloader (#1074522). (clumens)
3235     - DNFPayload: apply the kickstart excludedList. (ales)
3236     - Only pylint files that are in the git working copy (dshea)
3237     - Move accordion population into a separate function (vpodzime)
3238     - Short-circuit testing if root has any devices (vpodzime)
3239     - Getting new devices is not enough cheap operation for being a property
3240     (vpodzime)
3241     - Hide and unhide the same set of disks in the Custom spoke (vpodzime)
3242     - Use GtkActionList when populating filesystem store (vpodzime)
3243     - Fix XDG_RUNTIME_DIR not set messages by creating one (dshea)
3244     - Make the ui_storage_logger reusable (vpodzime)
3245     - Decide on supported RAID levels in a better way (vpodzime)
3246     - Fix typo in the comment (vpodzime)
3247     - Add and use MountpointSelector's attributes we need (vpodzime)
3248     - Make code to get Size instance from user's input reusable (vpodzime)
3249     - Make getting raid level less hacky (vpodzime)
3250     - Implement a function to get container type name (vpodzime)
3251     - Make custom partitioning helper constants look as constants (vpodzime)
3252     - Simplify mountpoint validation and error reporting (vpodzime)
3253     - Simplify label validation and error reporting (vpodzime)
3254     - Move translated_new_install_name to the right place (vpodzime)
3255     - Rename the __storage attribute to a more propriate name (vpodzime)
3256     - Split out helper code from the Custom partitioning spoke (vpodzime)
3257     - The reset button should only be sensitive if there's something to reset.
3258     (clumens)
3259     - Confirm before resetting custom partitioning selections (#970093). (clumens)
3260     - DNFPayload: Add languageGroups(). (ales)
3261     - Use ROOT_PATH not /mnt/sysimage (bcl)
3262     - Override ROOT_PATH with environmental variable (bcl)
3263     - Import /etc/login.defs in libuser.conf (#979815) (dshea)
3264     - Fix environment group changes based on ListBox row activation (dshea)
3265     - DNFPayload: do not crash when an addon is unavailable. (ales)
3266     - Payloads: make DEFAULT_REPOS a part of the interface. (ales)
3267    
3268     * Tue Mar 11 2014 Brian C. Lane <bcl@redhat.com> - 21.27-1
3269     - Don't disable anaconda repo on rawhide (bcl)
3270     - Set log level to debug when using an updates image (bcl)
3271     - driver-updates: accept burned driver discs (#1073719) (wwoods)
3272     - Do nothing if previously selected selector gets focus again (#1029798)
3273     (vpodzime)
3274     - Firstboot is deprecated and gone on Fedora 20 and anything newer (vpodzime)
3275     - Reraise the exception properly (vpodzime)
3276     - Set progress bar to 100 %% in a different way (#1058755) (vpodzime)
3277     - Refresh after checkbox clicked (#1074188) (amulhern)
3278     - Use instclass.efi_dir when constructing the EFI path (dshea)
3279     - Add rescue kernels to the bootloader install list. (#1036349) (dshea)
3280     - Cover both possible ways that GUI WWID may have been set (#1074184)
3281     (amulhern)
3282     - Do not write out /etc/adjtime file on s390(x) (#1070748) (vpodzime)
3283     - Ignore the data model and just return self.environment (mkolman)
3284     - Software spoke can't be complete if the payload thread is running (mkolman)
3285     - DNFPayload: blivet.size.Size() only knows 'spec' kwarg now. (ales)
3286     - Specify string format arguments as logging function parameters (dshea)
3287     - Add missing changelog entries (bcl)
3288    
3289     * Fri Mar 07 2014 Brian C. Lane <bcl@redhat.com> - 21.26-1
3290     - Don't traceback, just log a warning if connection is unavailable (#1070928)
3291     (mkolman)
3292     - Remove unnecessary use_markup attributes. (dshea)
3293     - Add a check for unnecessary markup. (dshea)
3294     - Ignore the server keymap for spoke status if using VNC (#1045115) (dshea)
3295     - Call % outside of the translation (dshea)
3296     - Fix pylint errors about dangerous default values (dshea)
3297     - Typo fix (dshea)
3298     - driver-updates: skip iso selection with OEMDRV (#1066784) (bcl)
3299     - driver-updates: allow interactive mode to load multiple devices (wwoods)
3300     - driver-updates: add DoRefresh loop to select_iso() (#1066784) (wwoods)
3301     - driver-updates: add 'refresh' to selection_menu() (wwoods)
3302     - driver-updates: rework 'dd_finished' handling (wwoods)
3303     - driver-updates: refactor dd_scan (wwoods)
3304     - driver-updates: refactor menu to allow other options (wwoods)
3305     - Bump blivet Requires for DASD changes. (#1064423) (sbueno+anaconda)
3306     - Add GUI and TUI logic to handle unformatted DASDs. (#1064423)
3307     (sbueno+anaconda)
3308     - Show unformatted DASDs in the local disk store. (#1064423) (sbueno+anaconda)
3309     - Add dialog box to warn about formatting DASDs. (#1064423) (sbueno+anaconda)
3310     - Update disk refs when recovering from a devicefactory failure. (#1032141)
3311     (dlehman)
3312     - Add typelib and library paths to the test environment. (dshea)
3313     - Run pylint with NO_AT_BRIDGE=1 set in the environment (dshea)
3314     - pylint: Clean up accordion warnings (bcl)
3315     - Let Gtk pick the size for the isoChooserDialog (#973376) (dshea)
3316     - network kickstart: do not bind to MAC if SUBCHANNELS are present (#1070232)
3317     (rvykydal)
3318    
3319     * Fri Feb 28 2014 Brian C. Lane <bcl@redhat.com> - 21.25-1
3320     - pylint: Add a pile of new E1101 exceptions (bcl)
3321     - pylint: change disable-msg to disable (bcl)
3322     - Fix console for s390 and 'noshell' mode (#1070672) (wwoods)
3323     - Check that the addon selection state exists before reading it (dshea)
3324     - Set the name in the volume group store (dshea)
3325     - Don't ignore the directory of the driver disk iso file (vpodzime)
3326     - Set rpm macros in DNFPayload (dshea)
3327     - Implement %%packages --instLangs (#156477) (dshea)
3328     - Set rpm macro information in anaconda-yum. (dshea)
3329     - Move the anaconda-yum exception handler (#1057120) (dshea)
3330     - Only run gtk actions in the gtk thread. (dshea)
3331     - Add createrepo Requires (#1016004) (bcl)
3332     - Fix a traceback gathering free space info for a container. (#1069854)
3333     (dlehman)
3334     - network: detect also fcoe vlan device names exceeding IFNAMESIZ (#1051268)
3335     (rvykydal)
3336     - DNFPayload: display the download progress on the hub. (ales)
3337     - driverdisk: Fix typo in error logging (#1016004) (bcl)
3338     - driverdisk: Create a repo for network drivers (#1016004) (bcl)
3339     - driverdisk: Catch blkid failure (#1036765) (bcl)
3340     - driverdisk: Ignore extra blkid fields (#1036765) (bcl)
3341     - We can't trust rhcrashkernel-param to give us newline-free text. (pjones)
3342     - Remove redundant _setCurrentFreeSpace() call (#1043763) (amulhern)
3343     - Enable python-coverage in anaconda (dshea)
3344     - Move the sidebar to the right for RTL languages (dshea)
3345     - Remove a bunch of unused includes and tests for headers (dshea)
3346     - Add a note about when and how to remove isys.sync (dshea)
3347     - Remove isys.isPseudoTTY (dshea)
3348     - Convert isys.isIsoImage to python code (dshea)
3349     - Focus the language search input by default (#973967) (dshea)
3350     - Ensure media being verified is always unmounted (dshea)
3351     - Write 'text'/'cmdline' in anaconda-ks.cfg in text/cmdline mode (wwoods)
3352     - text install -> text system (#1021963) (wwoods)
3353     - Support the 'skipx' kickstart command (wwoods)
3354     - let systemd decide when to start anaconda-sshd (wwoods)
3355     - Don't use tmux for inst.noshell (#1058607) (wwoods)
3356     - Fix a nitpick from bcl. (pjones)
3357     - Make rhcrashkernel-param get run on non-GRUB 2 platforms. (pjones)
3358     - Cast the blame appropriately when the kernel refuses efivars changes.
3359     (pjones)
3360     - Do not use shim.efi on ARMv8 aarch64 (#1067758) (dmarlin)
3361     - Handle missing environments specified through kickstart (#1067492). (clumens)
3362     - create_sparse_file in blivet now expects a Size object. (clumens)
3363     - Don't traceback when no size is given in kickstart (#1067707). (clumens)
3364    
3365     * Fri Feb 21 2014 Brian C. Lane <bcl@redhat.com> - 21.24-1
3366     - setup default environment in initialize (bcl)
3367     - Move environmentAddons into packaging (bcl)
3368     - Skip running efibootmgr for image and dir installations (#1067749) (bcl)
3369     - Move translatable format strings into python. (dshea)
3370     - Added a check for translatable format strings in glade. (dshea)
3371     - Use a single script to run the glade tests. (dshea)
3372     - Check that s390x LVM configuration is valid. (#873135, 885011)
3373     (sbueno+anaconda)
3374     - Re-apply disk selection on error in TUI storage. (#1056316) (sbueno+anaconda)
3375     - Properly retry package downloads (#924860) (mkolman)
3376     - Change the CSS class name of the sidebar (#1067049). (clumens)
3377     - Preserve ipv6.disable=1 on target system (#1040751) (wwoods)
3378     - Remove an unused import in driver-updates. (clumens)
3379     - Fix heredoc usage in generated /etc/grub.d/01_users (#1044404). (dcantrell)
3380    
3381     * Tue Feb 18 2014 Brian C. Lane <bcl@redhat.com> - 21.23-1
3382     - driverdisk: Parse all blkid output (#857248) (bcl)
3383     - Fix blkid output parsing and our output (vpodzime)
3384     - Don't use positional arguments to initialize Gtk objects (dshea)
3385     - Set mandatory property in network tui spoke. (#1064139) (sbueno+anaconda)
3386     - Disallow /boot on RAID on s390x. (#1027670) (sbueno+anaconda)
3387     - Remove a stray break statement (dshea)
3388     - Use devicetree.resolveDevice instead of udev_resolve_devspec. (#1047338)
3389     (dlehman)
3390     - Set ThreadManager.any_errors to be a property (dshea)
3391     - Error on "bootloader --location=partition" when using grub2 (#969095).
3392     (clumens)
3393     - Fix the handling of kernel parameters with no = (#1065704) (dshea)
3394     - Deal with a couple more "except Exception" lines. (clumens)
3395     - Fix pylint errors in the latest dnf-related commit. (clumens)
3396     - DNFPayload: pick the right FS as package download target. (ales)
3397     - DNFPayload: log import crashes. (ales)
3398     - DNFPayload: use dnf.exceptions.MarkingError. (ales)
3399     - Return the returned value in the fire_gtk_action (vpodzime)
3400     - Allow AddonData classes to parse options in the %%addon line (dshea)
3401     - Pass ints to Gtk resize functions (#1065021) (bcl)
3402    
3403     * Fri Feb 14 2014 Brian C. Lane <bcl@redhat.com> - 21.22-1
3404     - Remove app_paintable from a couple nav boxes (#1064708). (clumens)
3405     - Give a more correct error for missing groups/packages on exclude (#1060194).
3406     (clumens)
3407     - Fix some incorrect RPM macros in the spec file. (clumens)
3408     - Allow using globs and alternative paths for specifying boot drive (#1057282).
3409     (clumens)
3410     - Don't reset input check status when disabling a check (#1062273) (dshea)
3411     - Fix how an input check is disabled (#1062275). (dshea)
3412     - ListStore.remove expects an iter, not an int (#1062752). (clumens)
3413    
3414     * Tue Feb 11 2014 Brian C. Lane <bcl@redhat.com> - 21.21-1
3415     - Move save_netinfo into a hook (#1048231) (bcl)
3416     - Cleanup log message for pylint (bcl)
3417     - kickstart user accounts should be locked by default (#1063554) (bcl)
3418     - pre-push hook checking bugzilla IDs on rhelX branches (vpodzime)
3419     - Make sure LUKS devices can say they have a key (#1060255) (amulhern)
3420     - Handle LUKS passphrase before doing sanity check (#1060255) (amulhern)
3421     - Remove some unnecessary resets (#1060255) (amulhern)
3422     - Do not consider no available LUKS passphrase an error in do_autopart
3423     (#1060255) (amulhern)
3424     - Adapt to new blivet.sanityCheck() return type (#1060255) (amulhern)
3425     - Adapt StorageChecker class for changed return type of sanityCheck (#1060255)
3426     (amulhern)
3427     - Add sanityCheck functionality back into AutoPart.execute() (#1060255)
3428     (amulhern)
3429     - Bump blivet version for changed sanityCheck() interface (amulhern)
3430     - UnmanagedDeviceError and UnknownConnectionError are in the nm module.
3431     (clumens)
3432     - blivet no longer has a protectedDevices property. (clumens)
3433     - network: adapt to changed handling of devices without carrier in NM
3434     (#1062417) (rvykydal)
3435     - driverdisk: Rename skip_dds to make pylint happy (bcl)
3436     - driverdisk: Use a single systemd service to start DD UI (#1035663) (bcl)
3437     - driverdisk: Add dd_args_ks handling to driver-updates (#1035663) (bcl)
3438     - driverdisk: Process kickstart driverdisk commands (#1035663) (bcl)
3439     - driverdisk: Handle kickstart driverdisk command (#1035663) (bcl)
3440     - driverdisk: Use getargs instead of the env variable (#1035663) (bcl)
3441     - Remove now-unused isys/devices.[ch]. (clumens)
3442     - Call finalize functions in parent classes. (dshea)
3443     - Fix crashes in the LayoutIndicator dispose function. (dshea)
3444     - Require systemd (dshea)
3445     - Remove the now-unused anaconda_spoke_header.png. (clumens)
3446     - Minor aesthetic cleanups (#1045250). (duffy)
3447     - Add a topbar design to SpokeWindows. (#1045250) (duffy)
3448     - Update the Aarch64 packages to include efibootmgr. (dmarlin)
3449     - Add a sidebar to the standalone and hub windows (#1045250) (duffy)
3450     - Allow specifying an environment in the kickstart file (#1050994). (clumens)
3451     - The autopart scheme combo should work for creating partitions manually, too.
3452     (clumens)
3453    
3454     * Tue Feb 04 2014 Brian C. Lane <bcl@redhat.com> - 21.20-1
3455     - makebumpver: Any failure should cancel the bump (bcl)
3456     - Add option help text for --image and --dirinstall flags (#1056791) (amulhern)
3457     - Update bumpver to allow Related bugs (bcl)
3458     - Fix up some pylint errors. (clumens)
3459     - If a user has been created, don't allow entering the user spoke (#1058564).
3460     (clumens)
3461     - Tweak passphrase wording a bit. (clumens)
3462     - Tweak the final progress messages to fit on the screen a little better
3463     (#1058463). (clumens)
3464     - Fix iscsi target selection checkbox in GUI (#1058653) (rvykydal)
3465     - network ks: allow setting only hostname with network command (#1051564)
3466     (rvykydal)
3467     - fcoe: add fcoe=<NIC>:<EDB> to boot options for nics added manually (#1040215)
3468     (rvykydal)
3469     - network GUI: ignore fcoe vlan devices (#1051268) (rvykydal)
3470     - Use an unused variable. (dshea)
3471     - Ignore an unused function warning on isys_init (dshea)
3472     - Remove unused isys files. (dshea)
3473     - Fix the handling of realloc failures. (dshea)
3474     - Run cppcheck on the C source files. (dshea)
3475     - Check RAID10 box for BTRFS (#1021856) (amulhern)
3476     - Make sure directory for DD extraction exists (vpodzime)
3477     - Handle --image arguments more thoroughly (#982164,#994488) (amulhern)
3478     - Remove the border from the custom part notebook. (clumens)
3479     - Style the Done button to make it more noticable (mizmo). (clumens)
3480     - Change the string used to test for serial console (#1054951) (dmarlin)
3481    
3482     * Tue Jan 28 2014 Brian C. Lane <bcl@redhat.com> - 21.19-1
3483     - Change the reclaim space button rules (#980496) (bcl)
3484     - Revert "Fix up username checking regex a bit." (dshea)
3485     - Fix a pylint-caught problem from my previous cherry-pick. (clumens)
3486     - Give priority to IPv4 addresses when showing VNC & SSH IP (#1056420)
3487     (mkolman)
3488     - Display custom part warnings/errors on the spoke itself (#975840). (clumens)
3489     - Fix listing threads that caused an error (vpodzime)
3490     - Do not add errors item for thread in advance (vpodzime)
3491     - Log exceptions before running exception handling (vpodzime)
3492     - Fix kickstart 'updates' command (#1056727) (wwoods)
3493     - Fix exitHandler loop deactivation (bcl)
3494     - Show hidden disk images (#1034996) (bcl)
3495     - Fix pylint errors (dshea)
3496     - Provide a maximum width to the betanag dialog. (clumens)
3497     - Don't include zero sized disks in the custom part UI either (#903131).
3498     (clumens)
3499     - Move the Quit button to the right and make it consistently sized (#1038802).
3500     (clumens)
3501     - "Delete All" on the reclaim dialog should not delete hdiso source (#980496).
3502     (clumens)
3503     - Add a scrollbar to the error dialog (#1021506). (clumens)
3504     - Change the product name we key off (#1055019). (clumens)
3505     - Another dracut pylint change. (dshea)
3506     - Fix page logic in driver selection (#1055333) (bcl)
3507     - Give users way to select DD ISO interactively (#1036765) (vpodzime)
3508     - Make network-fetched driver disk .iso files work (#1003595) (vpodzime)
3509     - Disable pylint messages too annoying to deal with. (dshea)
3510     - Fix unused variable warnings (dshea)
3511     - Remove unused imports (dshea)
3512     - Specify string format arguments as logging function parameters (dshea)
3513     - Remove the raidstart and raidstop commands (dshea)
3514     - Expand the reach of pylint (dshea)
3515     - Put Xorg on tty6 in accordance with Ancient Anaconda Tradition (#980062)
3516     (wwoods)
3517     - Fix the handling of kickstart NFS repos with options (#1045528) (dshea)
3518     - Skip empty layout-variant specifications when setting layouts (#1057442)
3519     (vpodzime)
3520    
3521     * Thu Jan 23 2014 Brian C. Lane <bcl@redhat.com> - 21.18-1
3522     - Use validate_label to check whether label should be updated (#1038590)
3523     (amulhern)
3524     - Always reject label if the format exists (#1038590) (amulhern)
3525     - Make label field always sensitive (#1038590) (amulhern)
3526     - Save module list after initial module load (#1050352) (bcl)
3527     - Require gtk3 and glib2 documentation to build (dshea)
3528     - Rename get_widgets_datadir to anaconda_get_widgets_datadir. (dshea)
3529     - Include the annotation-glossary (dshea)
3530     - Set device.format.label field close to where we read it (#1056139) (amulhern)
3531     - Install the rpmrc file to the initrd.img (#1016004) (vpodzime)
3532     - Give users hint about VNC password restrictions (#1053546) (vpodzime)
3533     - Be more liberal in what is accepted as a size unit. (dshea)
3534     - Remove en_spec parameters from blivet.size.Size. (dshea)
3535    
3536     * Tue Jan 21 2014 Brian C. Lane <bcl@redhat.com> - 21.17-1
3537     - Test for DataHolder Class (#1034427) (bcl)
3538     - Use DataHolder for TUI nfs data (#1034427) (bcl)
3539     - Add DataHolder class (#1034427) (bcl)
3540     - Handle inst.{gpt,dnf,extlinux} using cmdline.getbool() (wwoods)
3541     - Drop unreferenced 'useIPv[46]' flag (wwoods)
3542     - Don't force shell on tty2 (#980062) (wwoods)
3543     - add comment about boot-options.txt (wwoods)
3544     - Add support for getting stage2 image from boot.iso (#1035514) (mkolman)
3545     - Various changes to handling of filesystem label setting (#1038590) (amulhern)
3546     - Fix translation context on the storage options dialogs. (clumens)
3547     - Fix problems going into custom partitioning with the new work flow. (clumens)
3548     - Don't show actions next to free space lines in the reclaim dialog (#1054208).
3549     (clumens)
3550     - If there's a label in the ISO device combo, put it on a new line (#1031727).
3551     (clumens)
3552     - Make the device name in a MountpointSelector less wide (#1048583). (clumens)
3553     - If a root password is set, don't show the spoke (#910355, #1041405).
3554     (clumens)
3555     - Check for certain disk attrs before trying to access them. (#1053055)
3556     (sbueno+anaconda)
3557     - Use gtk_get_locale_direction. (dshea)
3558     - Always run efibootmgr from ROOT_PATH (bcl)
3559     - A class for scheduling Gtk actions and running them all at once (vpodzime)
3560     - Remove some leftover float conversions. (dshea)
3561     - Use uint64 for the resize target size. (dshea)
3562     - Return program output as a string instead of a list (dshea)
3563     - Implement and use a function for one-off running Gtk actions (vpodzime)
3564     - Be more defensive when getting layouts and their variants (vpodzime)
3565     - Implement and use functions for conversion between keymaps and layouts
3566     (vpodzime)
3567     - Fix reset of existing device to its original size. (dlehman)
3568     - Don't disable checks for global at the module level. (dshea)
3569     - Clean up the pylint-false-positives. (dshea)
3570     - Remove pylint comments that are no longer necessary (dshea)
3571     - Allow pylint-false-positives to end with a newline (dshea)
3572     - Change storage widget visibility based on disks selected. (clumens)
3573     - Rename widgets in the two remaining options dialogs. (clumens)
3574     - Allow going to the reclaim dialog even for autopart (#1014671). (clumens)
3575     - Add the autopart type combo to custom storage (#1014671). (clumens)
3576     - Tweak DiskOverview spacing a little bit (#1014671). (clumens)
3577     - Add custom part and encryption buttons to the main storage spoke (#1014671).
3578     (clumens)
3579     - Remove the existing install_options1 dialog, rename the others (#1014671).
3580     (clumens)
3581     - Grow the spoke gradient image to fit the nav_area (#1035772). (clumens)
3582     - Additional completion checks in network spoke. (#1044571) (sbueno+anaconda)
3583     - Fix problems reported by pylint (dshea)
3584     - Decode potentially 8-bit strings in TUI windows (dshea)
3585    
3586     * Fri Jan 10 2014 Brian C. Lane <bcl@redhat.com> - 21.16-1
3587     - Use blivet.size.Size for all size quantities. (dlehman)
3588     - make anaconda-shell (wwoods)
3589     - handle "ks=cdrom[:<path>]" on systems with multiple CDs (#1049237) (wwoods)
3590     - dracut: add when_any_cdrom_appears for cdrom autoprobe (wwoods)
3591     - dracut: minor shell cleanup (wwoods)
3592     - fix inst.noshell (#807703) (wwoods)
3593     - Error gracefully if we have a question in cmdline mode. (#869731)
3594     (sbueno+anaconda)
3595     - Verify that designated label can be set (#1038590) (amulhern)
3596     - Do not change sensitivity of label field (#1038590) (amulhern)
3597     - Make the clear icon functional in language spoke. (sbueno+anaconda)
3598     - Fix the translated pango markup check (dshea)
3599     - Remove iutil.strip_markup. (dshea)
3600     - Pass additional command-line arguments to pylint (dshea)
3601     - Fix and ignore markup warnings where appropriate (dshea)
3602     - Check that the Pango markup in glade files is valid (dshea)
3603     - Added a pylint module to check pango markup. (dshea)
3604     - Split the po-based translation code into a separate file. (dshea)
3605     - Fix bool parsing of boot options with inst. prefix (#1044391) (mkolman)
3606     - Use vc_keymap as X layout only if we get nothing from localed (#1048592)
3607     (vpodzime)
3608     - Warn user if entering LUKS password with non-ASCII characters (#1039168)
3609     (vpodzime)
3610     - Add back some erroneously removed set_use_underline calls (dshea)
3611     - Only show the "DATA" heading if there are data mount points under it.
3612     (clumens)
3613     - Don't allow the advanced user dialog to be saved with errors (dshea)
3614     - Move the add_check stuff into helper classes. (dshea)
3615     - Remove the UID and GID maximums. (#978846) (dshea)
3616     - Fix an invalid mnemonic widget reference in passphrase entry (dshea)
3617     - Added checks for some potential issues in glade files (dshea)
3618     - Remove scrot dependency for global screenshot support (mkolman)
3619     - Fix mnemonic widget reference id (vpodzime)
3620    
3621     * Tue Jan 07 2014 Brian C. Lane <bcl@redhat.com> - 21.15-1
3622     - Use the new Gtk.ListBox for displaying environments and addons (#1039683).
3623     (clumens)
3624     - Display additional disk attributes in TUI storage spoke. (#1024760)
3625     (sbueno+anaconda)
3626     - Fix 'select all disks' logic in TUI storage spoke. (sbueno+anaconda)
3627     - Ignore the compile script (dshea)
3628     - network GUI: don't crash when wifi is activated in standalone spoke
3629     (#1046138) (rvykydal)
3630     - Use the right test for there being any storage actions. (clumens)
3631     - Only display the actions summary dialog if there are any actions (#1030511).
3632     (clumens)
3633     - Do not support kickstart+live installs (#1027160). (clumens)
3634     - We no longer directly use libnl (#1034830). (clumens)
3635     - Remove _transactionErrors from yumpayload.py. (clumens)
3636     - Move xhost handling to the xinit script (#1045280) (dshea)
3637     - Check for ready before baseRepo in completed (#1044985) (bcl)
3638     - Treat the output of vncpasswd as binary data, since it is (#1045119) (dshea)
3639     - Add iutil.exec* options for handling binary data (dshea)
3640     - Print a message and exit if a user attempts to upgrade via kickstart. (dshea)
3641    
3642     * Wed Dec 18 2013 Brian C. Lane <bcl@redhat.com> - 21.14-1
3643     - Fix the release notes image cycler. (#1043393) (dshea)
3644     - Do not schedule resize actions for non-resizing requests (#1039491)
3645     (vpodzime)
3646     - Use ceil for minSize in resize dialog (#1040012) (bcl)
3647     - Use integer numbers of megabytes in the Reclaim dialog (#1040012) (vpodzime)
3648     - fcoe gui: repopulate device tree only if device was actually added (#1039223)
3649     (rvykydal)
3650     - Exclude FCoE disks from local disks (#1039223) (rvykydal)
3651     - fcoe: repopulate devicetree after adding FCoE SAN (#1039223) (rvykydal)
3652     - Add initial 64-bit ARM aarch64 EFI support (#1034428) (dmarlin)
3653     - Rename network spoke header (mkolman)
3654     - Show the Shell spoke in debug mode (vpodzime)
3655     - Accept only .iso files from the IsoChooser dialog (#1015169) (vpodzime)
3656     - Just run the IsoChooser dialog lightbox (vpodzime)
3657     - Use libxklavier's new methods instead of our nasty hack (vpodzime)
3658     - Move atexit registration before running rescue mode (#1038855) (vpodzime)
3659     - Only display the addon separator if there's a reason to. (clumens)
3660     - Stop using deprecated gtk margin functions. (clumens)
3661     - Fix the check_accelerators srcdir path. (dshea)
3662     - Show msg in TUI if user attempts to create invalid username. (#965561)
3663     (sbueno+anaconda)
3664     - Fix up username checking regex a bit. (sbueno+anaconda)
3665     - Fix default device for ks=cdrom (#1042500) (bcl)
3666     - createUser is already in a chroot (#1038241) (bcl)
3667     - Skip checks on files that are not staged for commit. (dshea)
3668     - Allow catching exceptions from threads (vpodzime)
3669     - Enable warnings about abstract methods not overridden (dshea)
3670     - Provide empty methods to override abstract parent methods. (dshea)
3671     - Implement status in StandaloneSpoke. (dshea)
3672     - Move a bunch of abstract methods from Payload to PackagePayload (dshea)
3673     - Remove some methods from packaging.Payload. (dshea)
3674     - Disable abstract method warnings in intermediate abstract classes. (dshea)
3675     - Remove Personalization spoke (dshea)
3676     - Remove some vestigal code from an earlier version of GUICheck (dshea)
3677    
3678     * Thu Dec 12 2013 Brian C. Lane <bcl@redhat.com> - 21.13-1
3679     - Refresh environment addons on source change (#1033749) (bcl)
3680     - Fix selector device matching for unallocated partitions. (#1039292) (dlehman)
3681     - Rename the network config spoke a little bit. (clumens)
3682     - Don't encrypt device if container is encrypted (bcl)
3683     - network: add s390 options in ifcfgs generated from kickstart (#1031376)
3684     (rvykydal)
3685     - Remove enablement of whiteout/blackout plugins, and the requires on anaconda-
3686     yum-plugins. (notting)
3687     - Fix checking if we are collecting our module (vpodzime)
3688     - Remove an unnecessary continue statement in the potfiles check (vpodzime)
3689     - Use sys.exit instead of os._exit in the potfiles test (vpodzime)
3690     - List addons in exception report data (vpodzime)
3691     - Make Hub.storage and Spoke.storage a property (dshea)
3692     - Fix the botched helperization of StorageChecker (dshea)
3693     - Disable tmpfs in the GUI (#1039511) (mkolman)
3694     - Don't crash on NTP lookup without network (#1026079) (mkolman)
3695     - Don't rely on Gtk being importable for exception handling (vpodzime)
3696     - Support rnotes in SVG format (#1034407). (clumens)
3697     - Fix a couple warnings from -Werror=format-security (#1036989). (clumens)
3698     - Use abstract base classes for mixins. (dshea)
3699     - Display free space remaining in containers (#1035832). (clumens)
3700     - Make sure url and mirrorlist are not set at once (#1026834) (mkolman)
3701     - if rootfs is btrfs, add rootflags=subvol to kernel parameters (gene)
3702     - add ro to bootloader kernel parameters (gene)
3703     - Added missing entries to POTFILES.in (dshea)
3704     - Add a check that files with translatable strings are in POTFILES.in (dshea)
3705     - Fix the handling of renames in the pylint git hook. (dshea)
3706     - Remove startup-id from AnacondaBaseWindow. (dshea)
3707    
3708     * Wed Dec 04 2013 Brian C. Lane <bcl@redhat.com> - 21.12-1
3709     - Handle cancelation of device resize in the custom spoke. (#1027947) (dlehman)
3710     - Disallow /boot on lvm until grub2 fully supports it. (#1036705) (dlehman)
3711     - Disallow /boot on btrfs subvolume until grubby supports it. (#864198)
3712     (dlehman)
3713     - Remove an empty initialize function. (clumens)
3714     - Move PathDict into pyanaconda/ui/__init__.py. (clumens)
3715     - Add one more directory for ignoring test log files (dshea)
3716     - Defer translation of device_type_name (dshea)
3717     - Disable pylint errors about gobject-introspection methods (dshea)
3718     - Remove unused variables (dshea)
3719     - Document the instl.multilib boot option (vpodzime)
3720     - Minor tweak of our driver disk documentation (vpodzime)
3721     - network: GUI, don't ask for wifi secrets upon Configure (#1033073) (rvykydal)
3722     - network: GUI, add support for virtual devices removing (#1030870) (rvykydal)
3723     - network: fix naming of slave ifcfg files from kickstart (#1036047) (rvykydal)
3724     - network: GUI, handle virtual devices (bond, vlan, team) properly (#1036047)
3725     (rvykydal)
3726     - Change how we test if the GUI is available in the anaconda script. (clumens)
3727     - Update boot-options.txt. (amulhern)
3728     - Omit /dev/sr* from list-harddrives (#1032500) (sbueno+anaconda)
3729     - Fix EditTUISpoke to operate only on visible entries (vpodzime)
3730     - Don't try to investigate empty string for unicode chars (#1035799) (vpodzime)
3731     - Fix issues reported by the check_pw_visibility test (vpodzime)
3732     - Add check testing visibility of password entries (vpodzime)
3733     - Put tests of .glade files into a separate directory (vpodzime)
3734     - Save a reference to the imported Xkl module for get_current_layout (dshea)
3735     - Fix the Makefile.am subdirs for widget data. (dshea)
3736     - Fix some pylint warnings. (clumens)
3737     - Switch to libtimezonemap for the timezone map. (dshea)
3738     - Set the _config_dialog property during __init__. (dshea)
3739     - Fix handling of long release ids (mkolman)
3740     - Store older valid packages in separate folder (mkolman)
3741     - Fetch older valid releases (mkolman)
3742     - Import Xkl only when really needed (vpodzime)
3743     - Global screenshot support (#1025038) (mkolman)
3744     - Require new version of python-blivet (vpodzime)
3745     - Hide password characters in iSCSI login fields (#1034202) (vpodzime)
3746     - Use format names instead of types in the resize dialog (vpodzime)
3747     - Do not write out the vconsole.keymap boot option (#1035316) (vpodzime)
3748    
3749     * Wed Nov 27 2013 Brian C. Lane <bcl@redhat.com> - 21.11-1
3750     - Use raid RAID level constants instead of mdraid RAID level constants.
3751     (amulhern)
3752     - Use level objects instead of level integer codes. (amulhern)
3753     - clear software environment (#1029536) (bcl)
3754     - Update source on errors (#1030997) (bcl)
3755     - Fix errors in kickstart.py. (dshea)
3756     - Update gettext.txt (dshea)
3757     - Don't allow bootloader and /boot on iSCSI on s390 (#1034222) (vpodzime)
3758     - Round float values coming from the Gtk stack (#1013586) (vpodzime)
3759     - Generate missing machine-id (bcl)
3760     - Fix problems reported by pylint. (dshea)
3761     - Add HDD ISO support for TUI (#1000327) (mkolman)
3762     - Use a directory in build tree for pylint data. (dshea)
3763     - Remove MOSTLYCLEANDIRS from Makefile.am (dshea)
3764     - fixup spec for fedup (bcl)
3765    
3766     * Mon Nov 25 2013 Brian C. Lane <bcl@redhat.com> - 21.10-1
3767     - Cleanup anaconda.spec.in (bcl)
3768     - Handle non-leaf btrfs volumes with mountpoints. (#1016959) (dlehman)
3769     - Use en_spec for blivet Size spec strings with constant components. (#1029616)
3770     (dshea)
3771     - The gui and tui subpackages cannot be noarch (vpodzime)
3772     - Cleanup unused and overly complicated stuff in isys (vpodzime)
3773     - DNFPayload: tweak to the API changes in dnf-0.4.8 (ales)
3774     - Don't use cached packages with different release id (mkolman)
3775    
3776     * Fri Nov 22 2013 Brian C. Lane <bcl@redhat.com> - 21.9-1
3777     - Add a test for accesses of yum.preconf outside of _resetYum. (clumens)
3778     - Remove base_repo cache (#1011555) (bcl)
3779     - Make _yum.preconf setup atomic (#1028245) (bcl)
3780     - Remove threading from getBaseRepo handling (#1011555) (bcl)
3781     - If there are incomplete spokes, let the user know which (#1032801). (clumens)
3782     - tui: show Processing while source is busy (bcl)
3783     - tui: wait for threads before entering source and software (#1032823) (bcl)
3784     - clear errors when metadata is ok in tui source spoke (#1006570) (bcl)
3785     - Fix parallel pylint in distcheck. (dshea)
3786    
3787     * Wed Nov 20 2013 Brian C. Lane <bcl@redhat.com> - 21.8-1
3788     - Fix geolocation on live installs (mkolman)
3789     - Ignore the pylint warning on importing GraphicalUserInterface. (clumens)
3790     - Fall back to text mode if GUI is not available (vpodzime)
3791     - Get rid of unused isys.isCapsLockEnabled function (vpodzime)
3792     - Don't rely on having zenity and require it only for GUI (vpodzime)
3793     - No longer need the Gconf2 package (vpodzime)
3794     - Split out anaconda's user interfaces into separate packages (vpodzime)
3795     - Do not include tzmapdata into the main package (vpodzime)
3796     - Create directories for stubs if they don't exist (vpodzime)
3797     - Do not try to fetch our own packages that will be built (vpodzime)
3798     - Remove the unused flags import from installclass.py. (clumens)
3799     - Fix logging of pylint-one output (bcl)
3800     - Do yum lock logging only with inst.debug or loglevel=debug (vpodzime)
3801     - Don't panic on installclasses failing with inst.debug (vpodzime)
3802    
3803     * Mon Nov 18 2013 Brian C. Lane <bcl@redhat.com> - 21.7-1
3804     - Expand the use of ANACONDA_WIDGETS_DATADIR. (dshea)
3805     - Make thread manager operations atomic (#1029898) (mkolman)
3806     - Run pylint in multiple processes (vpodzime)
3807     - Fix how "changed" signal is emitted on the TreeSelection (vpodzime)
3808     - Pass biosdevname boot option to installed system (#1023609) (rvykydal)
3809     - network: update required NetworkManager version (team support) (rvykydal)
3810     - Use timing decorator for more actions (vpodzime)
3811     - Add test for the have_word_match function (vpodzime)
3812     - A nice decorator making Anaconda's GUI more responsive (vpodzime)
3813     - Short-circuit layouts matching (vpodzime)
3814     - Enforce upper bound for resize. (#1027947) (dlehman)
3815     - Fix some pylint problems in network.py. (clumens)
3816     - Add an updates location for the AnacondaWidgets overrides (dshea)
3817     - Fix typo (#1003591) (rvykydal)
3818     - network: call GDBus proxy methods like python (rvykydal)
3819     - network: add team support for kickstart %%pre phase (#1003591) (rvykydal)
3820     - network: generate kickstart commands for team devices (#1003591) (rvykydal)
3821     - network: support for adding team devices (#1003591) (rvykydal)
3822     - network: display team devices in status (#1003591) (rvykydal)
3823     - network: add team support to kickstart (#1003591) (rvykydal)
3824     - Initialize the AddLayouts dialog in advance in the KeyboardSpoke (vpodzime)
3825     - Add function to map functions on items in the main thread (vpodzime)
3826     - Allow having unique thread names with given prefix (vpodzime)
3827     - Remove an unused and non-working leftover function resetResolve (vpodzime)
3828     - Always center dialogs shown on top of lightbox (vpodzime)
3829     - Set spokes' distribution and beta warning only once (vpodzime)
3830     - use deepcopy on ksdata method (#1028243) (bcl)
3831     - Change source spoke proxy handling to use local copy (#967805) (bcl)
3832     - Apply a little tweak to the VNC password length message. (clumens)
3833     - Match layouts with stripped accents in AddLayout dialog (vpodzime)
3834     - Sort layout descriptions properly (#1026238) (vpodzime)
3835     - Make AddLayout dialog persistent (vpodzime)
3836     - Use Sphinx syntax in the iutil module (vpodzime)
3837     - Warn if vnc passwd is longer than 8 chars (hamzy)
3838     - Don't try to unicode unicode strings (#1029109) (vpodzime)
3839     - Add tmpfs support (#918621) (mkolman)
3840     - Added a few things that autoscan complained about (dshea)
3841     - Actually use the config header we generate (dshea)
3842     - Redirect pylint stderr to stdout (dshea)
3843     - Fix the handling of files generated for xgettext (dshea)
3844     - Use gettext to process glade files. (dshea)
3845     - Always use $prefix in directory names. (dshea)
3846     - Pass --enable-gtk-doc to configure in distcheck (dshea)
3847     - Fix the liveinst install/uninstall hooks (dshea)
3848     - Clean up after intltool (dshea)
3849     - Add missing files to dist (dshea)
3850     - DNFPayload: tweak to the API changes in dnf-0.4.7. (ales)
3851     - Add tests for iutil (mkolman)
3852    
3853     * Fri Nov 08 2013 Brian C. Lane <bcl@redhat.com> - 21.6-1
3854     - Fix typos in translation functions (dshea)
3855     - Put the cityCompletion back on the list of widgets (vpodzime)
3856     - Do not translate strings defined at the module or class level. (clumens)
3857     - Fix a couple places where we're doing %% inside of _(). (clumens)
3858     - Add a custom pylint module to check i18n problems. (clumens)
3859     - Remove an unused import. (clumens)
3860     - Provide our own sorting functions for regions and timezones (#1025029)
3861     (vpodzime)
3862     - Set locale for our process (vpodzime)
3863     - Translate timezones in GUI (vpodzime)
3864     - network gui: add apply tooltip to Configure button (#1018471) (rvykydal)
3865     - Make dialog return code checking more robust (amulhern)
3866     - Show last 4 bytes of wwid (#1024966) (jstodola)
3867     - Handle focus changes of MountpointSelectors from outside (#975838) (vpodzime)
3868     - network: do not crash when device for network --device is not found
3869     (#1023829) (rvykydal)
3870     - Log continuing from hub if there are no spokes (vpodzime)
3871     - Updates to boot-options.txt document (#1026449) (amulhern)
3872     - No longer install anaconda user documentation (#1026449) (amulhern)
3873    
3874     * Fri Nov 01 2013 Brian C. Lane <bcl@redhat.com> - 21.5-1
3875     - Fix spoke sorting issues in text-mode. (#929177) (sbueno+anaconda)
3876     - Send the continue click after the queue is empty (#1025347) (bcl)
3877     - No longer use summary screen visit to decide whether bootloader has been
3878     configured (#1025811) (amulhern)
3879     - Remove the bootloader line from the interactive kickstart file (#1025811)
3880     (amulhern)
3881     - Set bootloader default location to mbr in constructor (#1025811) (amulhern)
3882     - Remove column titles from the software spoke. (dshea)
3883     - Fix the selection of default groups (#1023263) (dshea)
3884     - Use the default yscale for the HubWindow alignment (dshea)
3885     - Fix kickstart block device resolution. (#1022206) (dlehman)
3886     - Specify query territory when getting language native name (vpodzime)
3887     - Get rid of trailing whitespace (vpodzime)
3888     - Export the right classes from the tui.spokes package (vpodzime)
3889     - Define newLayoutStore before it is used by the filter (vpodzime)
3890    
3891     * Wed Oct 30 2013 Brian C. Lane <bcl@redhat.com> - 21.4-1
3892     - Fix up a couple more pylint errors. (clumens)
3893     - Add check for Linux HFS+ ESP on Mac (#1010495) (bcl)
3894     - Update bootDrive info when storage config updated in text-mode. (#861018)
3895     (sbueno+anaconda)
3896     - Remove the special handling for en (dshea)
3897     - Ignore SIGINT (#1024822) (amulhern)
3898     - Don't show language twice for keyboard layouts (#1021907) (petersen)
3899     - Make Software spoke ready even if there is no repo (#1010348) (vpodzime)
3900     - Use decorator for methods that invalidate base repo cache (vpodzime)
3901     - Use cache for base repo if possible (vpodzime)
3902     - Make sure to actually set the autopart flag when needed. (#1023554) (dlehman)
3903     - Fix Gtk errors about list store columns (dshea)
3904     - Fix the layout up and down button sensitivies. (dshea)
3905     - Fix the Gkbd spec string for layouts with no variant (dshea)
3906     - pylint wants regexes with backslashes to be specified with 'r'. (clumens)
3907     - Add ack flag checking to makebumpver (bcl)
3908     - Correctly accept 'sshd' boot arg as alias for 'inst.sshd' (#924157) (wwoods)
3909     - Only eject CDROM devices we're actually using (#949919) (wwoods)
3910     - mem may not exist when it's printed out in these error messages. (clumens)
3911    
3912     * Fri Oct 25 2013 Brian C. Lane <bcl@redhat.com> - 21.3-1
3913     - Reset _proxyChange when a change is triggered (bcl)
3914     - Setup No Update checkbox correctly (#1016801) (bcl)
3915     - Fall back to closest mirror in source (#1016801) (bcl)
3916     - anaconda-dracut: fix ks failure with hd:<dev>:some/path.ks (wwoods)
3917     - Make sure lower bound for resize is applied. (#986575) (dlehman)
3918     - Use devicetree to resolve device specs in kickstart. (#1022206) (dlehman)
3919     - Disregard raid level combo when it isn't applicable. (#1022203) (dlehman)
3920     - Mountpoint is an attr of the format, not the device. (#892747) (dlehman)
3921     - Add bootloader execute before autopart (#1021258) (bcl)
3922     - Do error checking of repository names on "Installation Source" screen.
3923     (amulhern)
3924     - Avoid configure-event loops. (#1021511) (dshea)
3925    
3926     * Wed Oct 23 2013 Brian C. Lane <bcl@redhat.com> - 21.2-1
3927     - remove signal disconnect (#996899) (bcl)
3928     - Re-saved every glade file with glade-3.16.0 (dshea)
3929     - Fix pylint errors in network.py. (clumens)
3930     - Always use decimal notation for Size specs (dshea)
3931     - network kickstart: add support for devices configured in %%pre (#1019796)
3932     (rvykydal)
3933     - network gui: make Configure button insensitive when no ap is selected
3934     (#1015212) (rvykydal)
3935     - Encode possible unicode objects before calling str() on them (vpodzime)
3936     - Fix a typo in function documentation (vpodzime)
3937     - Use more general status for installations from media (#1017703) (vpodzime)
3938    
3939     * Mon Oct 21 2013 Brian C. Lane <bcl@redhat.com> - 21.1-1
3940     - Adds additional debug logging to yumpayload.py. (amulhern)
3941     - Handle invalid JSON in geoloc (#1021410) (dshea)
3942     - Revert "Only prompt for LUKS password if the user has chosen to configure
3943     automatically." (amulhern)
3944     - Add context support to check_accelerators (dshea)
3945     - Added translation contexts to the TUI. (dshea)
3946     - Added translation contexts to the GUI. (dshea)
3947     - Add support for context-based translations (dshea)
3948     - Reset checks on both password fields. (#1020580) (dshea)
3949     - Fix swaps added to fstab for noformat (gene)
3950     - Don't update hub's continue button and label for every spoke (#1020373)
3951     (vpodzime)
3952     - Add storage tests. (clumens)
3953     - Add option to select all hard drives in text mode. (#965580)
3954     (sbueno+anaconda)
3955     - BootLoaderError should not reset storage (#1019541) (bcl)
3956     - Only prompt for LUKS password if the user has chosen to configure
3957     automatically. (amulhern)
3958     - Remove an unused string (dshea)
3959     - Translate AM and PM (dshea)
3960     - Translate strings marked as translatable (dshea)
3961     - network gui spoke: use GDBus to obtain list of settings (#1018467) (rvykydal)
3962     - network: look for device settings also based on DEVICE value (#1017788)
3963     (rvykydal)
3964     - Fix liveinst to work with livemedia-creator (#1009711) (bcl)
3965     - Remove the button-label property on SpokeWindow. (clumens)
3966     - Log entering/exiting spokes and hubs in the GUI. (clumens)
3967     - Escape text inserted into markup strings (dshea)
3968     - Move markup out of translatable strings (dshea)
3969     - Move formating markup out of python where possible (dshea)
3970     - Use explicit children to set label attributes (dshea)
3971     - Turn on the image on the "Add a disk..." button. (dshea)
3972    
3973     * Wed Oct 16 2013 Brian C. Lane <bcl@redhat.com> - 20.26-1
3974     - Install bootloader to loop device in disk image installations. (#1019502)
3975     (dlehman)
3976     - Don't try to configure a bootloader for s390 disk image installs. (#1019502)
3977     (dlehman)
3978     - Fix initramfs generation for disk image installations. (#1019502) (dlehman)
3979     - Save mountpoints specified for existing btrfs volumes. (#892747) (dlehman)
3980     - Add a command line option for disabling friendly multipath names. (#977815)
3981     (dlehman)
3982     - Remove en (dshea)
3983     - "Fix" the zSeries device filter "label" (dshea)
3984     - Replace placeholders with the strings from python (dshea)
3985     - Add and fix keyboard accelerators (dshea)
3986     - Check for labels with use_underline and no accelerator (dshea)
3987     - Support checking the translation of plural strings (dshea)
3988     - Specify a node id in check_accelerator exceptions (dshea)
3989     - BTRFS cannot hold swap, no need to care about fstab swaps (vpodzime)
3990     - Add ANACONDA_INSTALL_CLASSES to testenv.sh. (clumens)
3991     - Put a version on the DNF requirement. (clumens)
3992     - Revert "For now, ignore checking dnfpayload.py with pylint." (clumens)
3993     - Fix the alignment of the Network Time switch (#1019301) (dshea)
3994     - Tell blivet which swaps should appear in the fstab (#1011391) (vpodzime)
3995     - Put only newly created or reformated swaps to the new root (vpodzime)
3996     - Make code to get new devices reusable as property (vpodzime)
3997     - Grab journal only from the last boot (vpodzime)
3998     - DNFPayload: allow enable/disable calls for repos that do not exist. (ales)
3999     - Add shell spoke to s390x installations (vpodzime)
4000     - Put TUI spokes in common categories (vpodzime)
4001     - MountpointSelector is a widget, set its property properly (#1013612)
4002     (vpodzime)
4003     - Include the journal log on installed system (bcl)
4004     - DNFPayload: error handling and logging cleanups. (ales)
4005     - DNFPayload: reset the transaction goal on new package selection check. (ales)
4006     - DNFPayload: implement environmentGroups() (ales)
4007     - Some partition scheme is always selected (#1017435) (vpodzime)
4008    
4009     * Fri Oct 11 2013 Brian C. Lane <bcl@redhat.com> - 20.25-1
4010     - Don't use g_object_set on initialized objects. (dshea)
4011     - Remove the "other" tab in the network spoke. (dshea)
4012     - Fix duplicated id in custom.glade (dshea)
4013     - Correctly generate rescue initrd (#1013087) (bcl)
4014     - Refresh swap suggestion once we know which disks to use (vpodzime)
4015     - Initialize the kickstart install method (#1017614) (dshea)
4016     - Use correct format for raise in kickstart.py (bcl)
4017     - Add install-requires target to the Anaconda makefile (mkolman)
4018     - fix luksformat references (#1014493) (bcl)
4019     - kickstart: check for correct format (#1014545) (bcl)
4020     - Add checks for unexpanded macros. (dshea)
4021     - UIScreen doesn't necessarily have the ready property (vpodzime)
4022     - Print long widgets in a nice way (vpodzime)
4023     - Consider errno 5 I/O errors hardware faults (vpodzime)
4024     - Install kernel-lpae if supported (#1013015) (vpodzime)
4025     - Bump firewalld version (mkolman)
4026    
4027     * Wed Oct 09 2013 Brian C. Lane <bcl@redhat.com> - 20.24-1
4028     - Clear bootDisk and bootloader stage info on errors (#1013482) (bcl)
4029     - Catch BootLoaderError when setting up bootloader (#1013474) (bcl)
4030     - Fix an incorrect formatting string in makeupdates. (clumens)
4031     - network: remove function we don't need anymore (rvykydal)
4032     - Don't translate constant strings. (dshea)
4033     - Take into account disk space when calculating swap suggestion (#1016673)
4034     (vpodzime)
4035     - DNFPayload: adapt to DNF change c3de85d6 of Base.install() error reporting.
4036     (ales)
4037     - DNFPayload: the new libcomps makes env.option_ids a list of GroupID objects.
4038     (ales)
4039     - Fix warning message when package version is not found in Koji (mkolman)
4040    
4041     * Tue Oct 08 2013 Brian C. Lane <bcl@redhat.com> - 20.23-1
4042     - Use Unicode in the TUI buffer strings (#1015620) (dshea)
4043     - DNFPayload: install DNF itself. (ales)
4044     - DNFPayload: direct conf.persistdir to the sysimage. (ales)
4045     - Add a tooltip to the container combobox (#975801) (bcl)
4046     - Use different colors for different message types. (dshea)
4047     - Exit on exception in the askVNC spoke (#962804) (dshea)
4048     - Don't skip the strength check if overriding a kickstart password (dshea)
4049     - Allow password spoke to be exited without password (#1004931) (dshea)
4050     - Re-check the password strength when the username changes (dshea)
4051     - Only call pwquality once per password. (dshea)
4052     - Use GUICheck checks for the root password strength (dshea)
4053     - Use constants for password check failure messages (dshea)
4054     - Use a constant to indicate GUICheck success (dshea)
4055     - Remove a redundant error property from UserSpoke (dshea)
4056     - Fix the usages of PWQError. (#1014405) (dshea)
4057     - Fix usage of GtkLevelBar in glade. (dshea)
4058     - Clean up callbacks in the user spoke. (dshea)
4059     - Removed an untrue portion of a doc comment (dshea)
4060     - Support for removing services from firewall needs newer PyKickstart (mkolman)
4061     - Add support for removing services from the firewall (#957809) (mkolman)
4062    
4063     * Fri Oct 04 2013 Brian C. Lane <bcl@redhat.com> - 20.22-1
4064     - Only encrypt the TUI user password once (#1015220) (dshea)
4065     - Don't try to collect removed modules (vpodzime)
4066     - Moved the NFS nolock option into Payload._setupNFS (dshea)
4067     - Grab journalctl logs if there is no /tmp/syslog (vpodzime)
4068     - Pass layout and variant in specific format to Gkbd (#1011155) (vpodzime)
4069     - Translate the "Quit" string at the end of liveinst. (dshea)
4070    
4071     * Fri Sep 27 2013 Brian C. Lane <bcl@redhat.com> - 20.21-1
4072     - Remove another reference to log_picker. (clumens)
4073     - Turn spinner back on for configuration (bcl)
4074     - Use assertIsInstance in the kickstart version test. (clumens)
4075     - If the full device path is given in repo=hd:, still select it in the UI
4076     (#980479). (clumens)
4077     - Display newly created partitions without a mountpoint, too (#886039).
4078     (clumens)
4079     - Don't require pressing escape twice to kill the media check window (#965625).
4080     (clumens)
4081     - Fix display of weak password warning (#1011850) (dshea)
4082     - Fix the tui simpleline imports. (dshea)
4083     - Don't confuse users by misleading tooltip (#1011112) (vpodzime)
4084     - Assorted other pylint fixes for scripts and utils (dshea)
4085     - Pass string format arguments as paramters to logging (dshea)
4086     - Ignore the use of func_globals in a test case (dshea)
4087     - Fix issues in the AnacondaWidgets python wrapper (dshea)
4088     - Make exception handling more specific (dshea)
4089     - Remove unused imports and variables (dshea)
4090     - Remove unnecessary lambdas (dshea)
4091     - Remove obsolete files. (dshea)
4092     - Check whether the commit matches the tree (dshea)
4093     - Run pylint on all python files (dshea)
4094     - Don't use relative imports (dshea)
4095     - Use g_signal_handler_disconnect instead of g_object_disconnect (#1010486)
4096     (vpodzime)
4097     - Fixup Eula class (bcl)
4098     - Allow searching for keyboard layouts in English (#1009806) (vpodzime)
4099     - network: don't create ksdata for devices enslaved in GUI (#1011826)
4100     (rvykydal)
4101     - Allow a proxy to be set before the method is saved (#1012096) (dshea)
4102     - Export the pykickstart Eula command (vpodzime)
4103    
4104     * Wed Sep 25 2013 Brian C. Lane <bcl@redhat.com> - 20.20-1
4105     - Encrypt normal user passwords when doing text install. (#977732)
4106     (sbueno+anaconda)
4107     - Escape the status before setting it as markup (vpodzime)
4108     - network gui: do not crash on devices without settings (eg wireless)
4109     (#1010519) (rvykydal)
4110     - Make the keyboard layout preview dialog bigger (#1011140) (vpodzime)
4111     - Return switching options with the same order as shown (#1011130) (vpodzime)
4112     - Use a temporary directory for verifying ISO media (dshea)
4113     - Skip devices not controllable by blivet (#1009809) (dshea)
4114     - Add translation support to check_accelerators (dshea)
4115     - Make sure autopart type is handled deterministicaly in text mode (#1010453)
4116     (vpodzime)
4117     - Don't rely on X server adding empty variant for its defaults (#1011658)
4118     (vpodzime)
4119     - Make Keyboard spoke's status consistent with other statuses (#1011166)
4120     (vpodzime)
4121     - LiveImageKSPayload skip the parent class setup method (#1010500) (bcl)
4122     - Pass the actual format instead of Python built-in (#1009678) (vpodzime)
4123     - Don't allow using updates with non-default network sources (#1008028)
4124     (vpodzime)
4125     - Use Sphinx documentation format in nm.py. (rvykydal)
4126     - Changed the keyboard accelerator for iscsi "Retry Log In" (dshea)
4127     - Only fail on a missing firewalld command if the firewall is enabled
4128     (#1004976). (clumens)
4129     - Cleanup some pylint failures in the network module (bcl)
4130     - Add GtkNotebook support to the accelerators check. (dshea)
4131    
4132     * Fri Sep 20 2013 Brian C. Lane <bcl@redhat.com> - 20.19-1
4133     - tui ErrorDialog needs to be modal (#983316) (bcl)
4134     - Keyboard variant names may contain dashes (#1008730) (vpodzime)
4135     - Forbid "root" as a user or group name. (#968451) (dshea)
4136     - Set the password strength color based on strength (#965596) (dshea)
4137     - Fix the password confirmation match check (#1009907) (dshea)
4138     - Replace removed python modules with stubs in makeupdates (vpodzime)
4139     - Unlock encrypted partitions before finding installations (#901917) (vpodzime)
4140     - Network TUI: remove unused import, import nm. (rvykydal)
4141     - Network TUI: show the same status as in gui. (rvykydal)
4142     - Network TUI: don't traceback when applying config to device without link.
4143     (rvykydal)
4144     - Generate ifcfg VLAN_ID value for kickstart network --vlanid. (rvykydal)
4145     - Network TUI: fix updating of ksdata in apply. (rvykydal)
4146     - Network TUI: ignore slaves devices for configuration. (rvykydal)
4147     - Clean up ifcfg file handling. (rvykydal)
4148     - Check the validity of generated usernames in TUI (#965543) (dshea)
4149     - Behave better when PYTHONPATH is already set (dshea)
4150     - Decode keyboard layout descriptions as UTF-8 (#1009278) (dshea)
4151     - Filter out devices with no media from custom (#960794) (bcl)
4152    
4153     * Wed Sep 18 2013 Brian C. Lane <bcl@redhat.com> - 20.18-1
4154     - ProgressHub no longer exists in pyanaconda/ui/tui/hubs. (clumens)
4155     - Search all disk types for install media (#1004726) (dshea)
4156     - git commit check for ack flag on rhel branches (bcl)
4157     - Fix Lightbox for compositing window managers (#1008446) (dshea)
4158     - Add metalink support to yumpayload (bcl)
4159     - Make progress screen in text mode standalone spoke instead of hub (vpodzime)
4160     - Render the right arrow based on the widget direction (#1008397) (vpodzime)
4161     - Mirror the GUI if an RTL language is chosen (#1008397) (vpodzime)
4162     - Removed unused GUI elements (dshea)
4163     - Clean up what is and isn't translatable and how. (dshea)
4164     - Removed the exceptionsText constant (dshea)
4165     - Add comments for translators to TUI input strings (#854226) (dshea)
4166     - Use python-format on all intltool-extract strings (dshea)
4167    
4168     * Mon Sep 16 2013 Brian C. Lane <bcl@redhat.com> - 20.17-1
4169     - Fix handling of blank size specs in the custom spoke. (#1004903) (dlehman)
4170     - Block resize slider value changed handler when setting range. (#1007387)
4171     (dlehman)
4172     - Remove an unused import. (clumens)
4173     - Create the XklWrapper singleton in background (vpodzime)
4174     - Translate layout and switching options descriptions on the fly (vpodzime)
4175     - Improve XklWrapper's API (vpodzime)
4176     - Move upcase_first_letter function to iutil (vpodzime)
4177     - Remove the Layout class and things we don't need in XklWrapper (vpodzime)
4178     - Ignore the whole m4 directory (vpodzime)
4179     - Do not schedule hubs with no spokes available (#1006357) (vpodzime)
4180     - Retranslate language filtering placeholder texts (#1007090) (vpodzime)
4181     - Use pigz to create updates.img (vpodzime)
4182     - The Desktop class doesn't need to inherit from SimpleConfigFile. (clumens)
4183     - Fix yet another pylint error caught after the fact. (clumens)
4184     - Move all languages found by geoip to the top in Welcome spoke (mkolman)
4185     - Don't set ksdata.lang.seen to True if using default value (mkolman)
4186     - DNFPayload: reset the sack and repos on updateBaseRepo() (ales)
4187     - refactor: YumPayload: selectKernelPackage()->_select_kernel_package() (ales)
4188     - DNFPayload: mirrorlist can not be an empty string. (ales)
4189     - DNFPayload: display the download step in progressQ. (ales)
4190     - DNFPayload: logging the missed packages/groups. (ales)
4191     - DNFPayload: select kernel packages. (ales)
4192     - DNFPayload: log when the transaction process unexpectedly terminates. (ales)
4193     - DNFpayload: disable all NSS operations in RPM. (ales)
4194     - DNFPayload: keyerror in isRepoEnabled() (ales)
4195     - DNFPayload: implement selectEnvironment() (ales)
4196    
4197     * Fri Sep 13 2013 Brian C. Lane <bcl@redhat.com> - 20.16-1
4198     - add pre-commit hook to run pylint (bcl)
4199     - Allow runpylint.sh to be passed files (bcl)
4200     - handle case of no ifcfg and no hostname (#1002737) (bcl)
4201     - Allow make targets to be run outside of $srcdir (dshea)
4202     - Fix the wildcard usage in automake files. (dshea)
4203     - Move the intltool Makefile rules into configure.ac (dshea)
4204     - Fix a format parameter mapping (#1007472) (dshea)
4205     - Check whether keyboard translations are stale (#972236) (dshea)
4206     - Fix the handling of xklavier strings. (dshea)
4207     - Center the Langsupport spoke's description (vpodzime)
4208     - Set minimal width request for the locales box (vpodzime)
4209     - Use constant for default keyboard layout (vpodzime)
4210     - Try to use VConsole keymap name as X layout (#1007359) (vpodzime)
4211     - Retranslate also layout indicator when retranslating BaseWindow (#1007087)
4212     (vpodzime)
4213     - Check ready state before baseRepo (#1007448) (bcl)
4214     - Fix po/Rules-extract so it doesn't remove itself (dshea)
4215     - Include LayoutIndicator and TimezoneMap to the Micsellaneous Widgets
4216     (vpodzime)
4217    
4218     * Wed Sep 11 2013 Brian C. Lane <bcl@redhat.com> - 20.15-1
4219     - Don't set up the resize slider for non-resizable devices. (#997690) (dlehman)
4220     - Remove 'completed' property from Autopart spoke in text UI. (sbueno+anaconda)
4221     - Clean up code for input handling in TUI spokes. (sbueno+anaconda)
4222     - set_hostname should proceed only on DVD and live installations (vpodzime)
4223     - Don't use temporary file and move when writing out an ifcfg file (vpodzime)
4224     - Set hostname when leaving network spokes (vpodzime)
4225     - Keep file-naming convention with the Lightbox widget (vpodzime)
4226     - Let users configure autopart options in interactive text ks. (#1001061)
4227     (sbueno+anaconda)
4228     - Add parameters to format strings (dshea)
4229     - Fix pre-processing of files for xgettext (#1005644) (dshea)
4230     - Added a test to check for xgettext warnings (dshea)
4231     - Make sure XklWrapper isn't dumped to the anaconda-tb file (vpodzime)
4232     - Catch race of network device state vs reading its config properties (#980576)
4233     (rvykydal)
4234    
4235     * Tue Sep 10 2013 Brian C. Lane <bcl@redhat.com> - 20.14-1
4236     - Convert the lightbox into a GObject (#1000927) (dshea)
4237     - Remove some more unused imports. (clumens)
4238     - Move the Anaconda class to a proper module (vpodzime)
4239     - Firstboot should be disabled by default after automated installations
4240     (vpodzime)
4241     - Fix typo introduced in refactorization (#1005511) (vpodzime)
4242     - Remove unused imports in the network spoke. (clumens)
4243     - Get rid of the now-unused new_firmware variable. (clumens)
4244     - Remove magic from the passphrase dialog (#921948) (vpodzime)
4245     - Don't pass extra arguments to LangLocaleHandler.__init__() (vpodzime)
4246     - Fix check for device state when reading its IPXConfig (#1001776, # 1005198)
4247     (rvykydal)
4248    
4249     * Mon Sep 09 2013 Brian C. Lane <bcl@redhat.com> - 20.13-1
4250     - Fix handling of flexible specs in onpart for member devices. (#1004885)
4251     (dlehman)
4252     - Always regenerate initramfs (#994180) (bcl)
4253     - Avoid the use of NamedTuple._make (dshea)
4254     - Add superclass __init__()s and fix an indent (dshea)
4255     - Pass logging string format variables as parameters (dshea)
4256     - Remove unnecessary variables, imports, semicolons (dshea)
4257     - Fix the user/group name regex (dshea)
4258     - Fix problems with the test scripts (dshea)
4259     - Handle kickstarts that don't specify timezone (#1001598) (mkolman)
4260     - Don't set "date of last password change" /etc/shadow field (#985572)
4261     (hdegoede)
4262    
4263     * Fri Sep 06 2013 Brian C. Lane <bcl@redhat.com> - 20.12-1
4264     - Cleanup arch tests (dshea)
4265     - Rearranged the automake tests. (dshea)
4266     - Update po/ build files to the current gettext (dshea)
4267     - Use libtool with gtkdoc-scanobj (dshea)
4268     - Use autoconf to set the spec file Version. (dshea)
4269     - Use the ustar format with make dist (dshea)
4270     - Fix widgets autotools generation. (dshea)
4271     - Require gtk-doc and GObject. (dshea)
4272     - dracut no longer auto assembles everything (#960496) (bcl)
4273     - Only ignore missing packages entries (#983316) (bcl)
4274     - Fix a string that was modified before translation (#1004960) (dshea)
4275     - Let users configure keyboard via anaconda in live installations (#1002533)
4276     (vpodzime)
4277     - Use copy instead of move for NTP configuration (#985566) (hdegoede)
4278     - Share code between the Welcome and Langsupport spokes (vpodzime)
4279     - Do not try to set None as hostname (#1002737) (vpodzime)
4280     - Fix crash on LiveCD if network is configured before installing (#1002373)
4281     (rvykydal)
4282    
4283     * Thu Sep 05 2013 Brian C. Lane <bcl@redhat.com> - 20.11-1
4284     - Add more details to iso device selector (#971290) (bcl)
4285     - Warn user if they enter a weak password in TUI. (#1001039) (sbueno+anaconda)
4286     - Don't mark spoke as completed if no repo is set. (#1001538) (sbueno+anaconda)
4287     - Don't enable chronyd if disabled in kickstart (#1002583) (mkolman)
4288     - Run firstboot-only spokes on first boot by default (vpodzime)
4289     - Let hubs specify which environments they support (vpodzime)
4290     - Don't mount cdroms that contain no mountable media. (#1000889) (dlehman)
4291     - Don't try to parse langcode if none given (vpodzime)
4292     - Get rid of the non-deterministic expand_langs and its usage (vpodzime)
4293     - Rework the Langsupport spoke to work with all locales (vpodzime)
4294     - Rework the Welcome spoke to allow users choose from all locales (vpodzime)
4295     - Improve import in GUI utils a bit (vpodzime)
4296     - Remove the cryptic "language-default keyboard" checkbutton (vpodzime)
4297     - Allow seting up locale without modifying ksdata (vpodzime)
4298     - Remove an unused argument of get_available_translations (vpodzime)
4299     - Setup language early to a value we can figure out (vpodzime)
4300    
4301     * Tue Sep 03 2013 Brian C. Lane <bcl@redhat.com> - 20.10-1
4302     - Optionally hide the GUI option to install updates (dshea)
4303     - Move the really_hide and really_show functions to utils (vpodzime)
4304     - Search for all translations, not only one per langauge (#1001446) (vpodzime)
4305     - Use the DEFAULT_LANG if GeoIP suggestion cannot be used (#1000715) (vpodzime)
4306     - Network spoke: fix showing of ipv6 addresses (rvykydal)
4307     - Use the sensitive-info log for sensitive location info (#986844) (mkolman)
4308     - Add new logger for sensitive information (mkolman)
4309     - Handle %%define changes for autofetch (mkolman)
4310     - Update dumping of network info for new nmcli interface. (rvykydal)
4311     - Text network spoke: more strict ipv6 address input checking (#909299)
4312     (rvykydal)
4313     - Network spoke: show global ipv6 addresses (rvykydal)
4314     - Text network spoke: add to translated files (po/POTFILES.in) (#902299)
4315     (rvykydal)
4316     - Text network spoke: require netmask and gateway for static ipv4 (#902299)
4317     (rvykydal)
4318     - Text network spoke: Condense device configuration information (#902299)
4319     (rvykydal)
4320     - Text network spoke: fix ipv4 regex (#909299) (rvykydal)
4321     - Resolved accelerator conflicts and marked excpetions. (dshea)
4322     - Added tests for duplicated keyboard accelerators (dshea)
4323     - Implement group creation with GID in GUI (#968085) (dshea)
4324     - Remove unused imports. (dshea)
4325     - Move dynamic labels out of custom.glade (#1000703) (dshea)
4326    
4327     * Mon Aug 26 2013 Brian C. Lane <bcl@redhat.com> - 20.9-1
4328     - Text network spoke: basic configuration support (#909299) (rvykydal)
4329     - Add support for network configuration in TUI. (#909299) (sbueno+anaconda)
4330     - Remove partial matches from Koji search results (mkolman)
4331     - Handle >=,<=,= for package version, fix -a/--add (mkolman)
4332     - Return only network devices supported in installer from nm_devices (#999514)
4333     (rvykydal)
4334     - Obtain network device type specific dbus interface dynamically (#999514)
4335     (rvykydal)
4336     - Catch no-hwaddr exception only for the respective call (#999514) (rvykydal)
4337     - Don't catch hwaddr not found exception for ethernet devices (#999514)
4338     (rvykydal)
4339     - Added a validation test for the GUI group list (dshea)
4340     - Validate input fields on the user spoke. (#967245) (dshea)
4341     - Added an input validation framework. (dshea)
4342     - Pre-fetch widgets in advanced user dialog (dshea)
4343     - Change validatePassword to be more flexible. (dshea)
4344     - Moved regexes into regexes.py. (dshea)
4345    
4346     * Fri Aug 23 2013 Brian C. Lane <bcl@redhat.com> - 20.8-1
4347     - Fix a SIGSEGV when returning from storage spoke (#983319) (dshea)
4348     - makebumpver: Fix problem with single line body (bcl)
4349     - For now, ignore checking dnfpayload.py with pylint. (clumens)
4350     - Don't do str() on an exception we're passing into a string substitution.
4351     (clumens)
4352     - Check for hwaddress exceptions. (dshea)
4353     - If LANG isn't set, set it to default value. (#997397) (sbueno+anaconda)
4354     - Remove yet another unused import. (clumens)
4355     - swap devices should be under the System portion (#962668). (clumens)
4356     - Populate the repo store before changed can ever be called (#994940).
4357     (clumens)
4358     - Make the ISO choosing widget wider (#973376). (clumens)
4359     - Don't recommend /usr as a separate mount point anymore (#981465). (clumens)
4360     - Do not run another instance of the TUI for errors (#997661) (vpodzime)
4361     - Do not try to exit from the installation thread (vpodzime)
4362     - Tell which thread failed to be added by the ThreadMgr (vpodzime)
4363    
4364     * Wed Aug 21 2013 Brian C. Lane <bcl@redhat.com> - 20.7-1
4365     - Modify the gtk_warning function in anaconda to use gtk3. (clumens)
4366     - Fix some pylint warnings in the new DNF code. (clumens)
4367     - Fix a couple more pykickstart handler version mismatches. (clumens)
4368     - anaconda requires a later version of partitioning syntax now. (clumens)
4369     - packaging: add dnf to the Anaconda's requires. (ales)
4370     - Enable DNFPayload on specific triggers. (ales)
4371     - DNFPayload: initial version. (ales)
4372     - refactor: tear down the install device in PackagePayload.reset(). (ales)
4373     - refactor: extract the device handling in YumPayload._configureBaseRepo up to
4374     PackagePayload. (ales)
4375     - refactor: move YumPayload._setUpMedia() up to PackagePayload._setupMedia().
4376     (ales)
4377     - Tweaks in the Payload interface. (ales)
4378     - remove: configureAddOnRepo from the Payload interface. (ales)
4379     - Payload: forgotten comment in spaceRequired() (ales)
4380     - Payload: define txID to None. (ales)
4381     - The NFS text dialog should never attempt to use method.url (#998446).
4382     (clumens)
4383     - Remove the unittest target, since "make check" will do this for us. (clumens)
4384     - Use the latest version of the RAID kickstart handler. (clumens)
4385     - Update both the method and repo info. (dshea)
4386     - remove the UBOOT class arm systems are now using EXTLINUX (dennis)
4387     - ARM: switch to using extlinux by default (dennis)
4388     - Update our pylint arguments. (clumens)
4389     - Don't implicitly unpack exceptions. That won't be supporetd in the future.
4390     (clumens)
4391     - Modify how we call logging functions to take a list of parameters. (clumens)
4392     - Use "raise Exception()" instead of "raise Exception, ..." (clumens)
4393     - Hook up pylint and our nosetests to be run via "make check". (clumens)
4394     - Drop unneeded required_space_text variable. (#997690) (dlehman)
4395     - Specify also query script when getting locale's native name (vpodzime)
4396     - Update runpylint.sh for pylint 1.0.0 (bcl)
4397     - Clean up translation placeholders (#890157) (bcl)
4398     - Don't override multilib setting unless the option was passed. (#987557)
4399     (dlehman)
4400     - Set the encoding of custom.py to utf-8 (dshea)
4401     - Report if a package was not found in Koji during autofetch (mkolman)
4402     - Convert makeupdates from getopt to argparse (mkolman)
4403     - Fixed the interpretation of RAID levels (dshea)
4404     - Consolidate get_object() calls. (dshea)
4405     - Add ASCII-only upper and lower string functions. (dshea)
4406     - Fix the User/Group already exists log messages. (dshea)
4407     - Normalize keyboard layout and variant strings from langtable (vpodzime)
4408     - A few tests for the keyboard layout and variant strings processing (vpodzime)
4409     - More robust parsing of the layout and variant string specification (vpodzime)
4410     - Move DEFAULT_VC_FONT to constants (vpodzime)
4411     - Match langs with stripped accents when filtering languages (vpodzime)
4412     - Fix the User subclass using an old version of the pykickstart superclass.
4413     (clumens)
4414     - Bring the kickstart version test back to life. (clumens)
4415     - Don't read proxy for methods that have no proxy (dshea)
4416    
4417     * Wed Aug 14 2013 Brian C. Lane <bcl@redhat.com> - 20.6-1
4418     - Import DBusGMainLoop directly (bcl)
4419     - Catch AttributeError when looking for InstallClass (bcl)
4420     - dracut/parse-kickstart should use the updated method-related classes
4421     (#994978). (clumens)
4422     - Ignore warnings about the global keyword and the DefaultInstall class.
4423     (clumens)
4424     - Fix all the pylint warnings in the anaconda file. (clumens)
4425     - Deal with the last of the catching Exception warnings. (clumens)
4426     - Always define a continueButton and quitButton property. (clumens)
4427     - Fix pylint warnings in the installclasses. (clumens)
4428     - Remove a directory that does not exist from the PYTHONPATH for pylint.
4429     (clumens)
4430     - Fix up some warnings about calling the superclass's __init__ method.
4431     (clumens)
4432     - Remove the reference to "anaconda" in reIPL. (clumens)
4433     - Fix up almost all of the redefining warning messages. (clumens)
4434     - Add a bunch of gobject-introspection related ignore lines. (clumens)
4435     - StorageChecker ought to have a self.storage attribute. (clumens)
4436     - Ignore another error pylint can't quite figure out. (clumens)
4437     - pylint doesn't understand what's in AnacondaKSHandler. (clumens)
4438     - Remove the "Add custom add-on" button. (clumens)
4439     - Fix up places where overridden methods don't take the same number of args.
4440     (clumens)
4441     - Fix up all unused variable warnings. (clumens)
4442     - Added files to MAINTAINERCLEANFILES (dshea)
4443     - Reenabled the pylint test target (dshea)
4444     - Cleanup the autogen scripts. (dshea)
4445     - Remove m4 files from the widgets project. (dshea)
4446     - Install gettext files at build time. (dshea)
4447     - Use the python checks provided by automake. (dshea)
4448     - Added a missing type check found by autoscan (dshea)
4449     - Cleanup the widgets autoconf file (dshea)
4450     - Add detail to logs when creating users and groups (dshea)
4451     - Fix miscellaneous errors in installclass.py. (clumens)
4452     - Fix a variety of errors in the packaging module. (clumens)
4453     - Do not run pylint against executable files in pyanaconda/. (clumens)
4454     - Clean up deprecated uses of the string module. (clumens)
4455     - Call the right superclass's method. (clumens)
4456     - Straighten out text UI methods so they have the same method signature.
4457     (clumens)
4458     - Remove the lines to ignore E0611. (clumens)
4459     - Bootloader.read is completely unused; cut it. (clumens)
4460     - Fix all the "X is defined outside of __init__" warnings. (clumens)
4461     - Display the correct string for the space required by packages. (clumens)
4462     - Remove lines that clearly just don't do anything. (clumens)
4463     - If we're not going to use the return value, don't grab it. (clumens)
4464     - kernelVersionList in tarpayload.py should act the same as all other versions.
4465     (clumens)
4466     - If we're not going to use the exception object, don't grab it. (clumens)
4467     - Define stage2_device in the BootLoader class. (clumens)
4468     - Don't call getPassAlgo before running createGroup. (clumens)
4469     - Remove some unused values out of constants.py. (clumens)
4470     - Finish taking care of pylint warnings in image.py. (clumens)
4471     - Remove the unused network and write methods from the Anaconda object.
4472     (clumens)
4473     - Remove the disable-msg lines for a couple C messages. (clumens)
4474     - Remove some easy unused argument warnings. (clumens)
4475     - Remove everything from InstallInterfaceBase except what Rescue needs.
4476     (clumens)
4477     - Remove the duplicated imports. (clumens)
4478     - Do not use a list or a dict as a default argument to a method. (clumens)
4479     - Remove unneeded lambdas. (clumens)
4480     - Fix up all the warnings where we used a reserved function name or keyword.
4481     (clumens)
4482     - Fix up about half of the "except:" and "except Exception:" lines. (clumens)
4483     - Fix a couple undefined variable errors that were real bugs. (clumens)
4484     - Ignore statements that have no effect. (clumens)
4485     - Fix up all the wildcard imports except two in packaging. (clumens)
4486     - Remove all unused import lines. (clumens)
4487     - Remove unnecessary pass statements. (clumens)
4488     - Fix bad indentation and tab-instead-of-space warnings from pylint. (clumens)
4489     - Put the pylint test back into service. (clumens)
4490     - Run make with multiple jobs in makeupdates (vpodzime)
4491     - Use gtk_image_new_from_icon_name (bcl)
4492     - Remove caching of unused device list. (dlehman)
4493     - Check MBR gap size even when /boot is on a plain partition. (#986431)
4494     (dlehman)
4495    
4496     * Thu Aug 08 2013 Brian C. Lane <bcl@redhat.com> - 20.5-1
4497     - Don't wait for systemctl shutdown command to exit (#974383) (bcl)
4498     - Fix the logging of the spice-vdagent status (dshea)
4499     - Update PYTHONPATH so unit tests work right out of the source tree. (clumens)
4500     - Don't check for a firstboot service file before processing the command.
4501     (clumens)
4502     - Strengthen the services command processing a bit. (clumens)
4503     - Start spice-vdagent (#969405) (dshea)
4504     - Skip password strength check for kickstart passwords (#986490) (dshea)
4505     - Network spoke: fix refresh of device IP configuration (rvykydal)
4506     - Add unsupported hardware dialog (#872728) (bcl)
4507     - storage.py -> system.py in POTFILES.in (clumens)
4508     - border_width=5 -> border_width=6 (clumens)
4509     - No need to call threads_init anymore (bcl)
4510     - Consolidate storage and networking under one category (#973013). (clumens)
4511     - When doing a live install, set the ks method appropriately (#986069).
4512     (clumens)
4513     - Check that we're doing an HD install before examining the attr (#989428).
4514     (clumens)
4515    
4516     * Thu Aug 01 2013 Brian C. Lane <bcl@redhat.com> - 20.4-1
4517     - POTFILES.in: rename time.py to time_spoke.py (bcl)
4518     - Only move INSTALL_TREE when it is mounted (#888196) (bcl)
4519     - Use ksdata.method.seen (#986069) (bcl)
4520     - Threaded Koji RPM lookups and downloads (mkolman)
4521     - Fix the langcode parsing regexp (vpodzime)
4522     - Move tests to old_tests and add some new, working tests (vpodzime)
4523     - Replace hostname with hostnamectl (#989584) (rvykydal)
4524     - Require fcoe-utils only on ix86 and x86_64 architectures (#989913) (vpodzime)
4525     - Fix searching for local RPMs with no version required (vpodzime)
4526     - Expand the '~' in the RPM_FOLDER_NAME (vpodzime)
4527     - Set system date and time with our own function (vpodzime)
4528     - Remove the useless, confusing and lying PoolsNote (vpodzime)
4529     - Use tiny, fast and thread-safe ntplib module instead of ntpdate (vpodzime)
4530     - For vnc require network in intramfs (#989156) (rvykydal)
4531     - Fix makeupdates' package fetching when no version is specified (vpodzime)
4532     - Make it clear on the summary dialog that changes take effect later. (clumens)
4533     - Don't mark the summary dialog's tree view as insensitive. (clumens)
4534     - Work with files in a more pythonic way in makeupdates (vpodzime)
4535     - Honor hostname set in kickstart (#988483) (rvykydal)
4536     - Do not automatically set UTC mode on kickstart installs. (clumens)
4537     - Add automatic fetching of RPMs for new Defines & Requires (mkolman)
4538     - Don't prompt for ssh on s390x if doing an image install. (#983056) (sbueno)
4539     - Rename tz spoke to avoid potential conflict with std 'time' module. (sbueno)
4540    
4541     * Thu Jul 25 2013 Brian C. Lane <bcl@redhat.com> - 20.3-1
4542     - Fix driver disk path for inst.dd= method (#987513) (bcl)
4543     - Add support for NFS as install source in TUI. (#971298) (sbueno+anaconda)
4544     - Allow logging into multiple iscsi nodes at once (#975831). (clumens)
4545     - Fix crash while parsing ntp servers from DHCP6 (#969303) (dshea)
4546     - Use ExceptionInfo namedtuple when dumping anaconda (#982299) (vpodzime)
4547     - Wait for device connections for iface-bound iscsi in kickstart (#740105)
4548     (rvykydal)
4549     - Refer to blivet instead of storage in iscsi kickstart (#740105) (rvykydal)
4550     - Mark disk 'selected' if only one present in TUI. (#975790) (sbueno+anaconda)
4551     - Update devicetree only if we logged in to some target in add iscsi dialog.
4552     (rvykydal)
4553     - Don't show multipath members in specialized disks overview (#740105)
4554     (rvykydal)
4555     - Do not populate devicetree after each single login in iscsi dialog (#740105)
4556     (rvykydal)
4557     - Match also iface when logging into selected iface-bound iscsi target
4558     (#740105) (rvykydal)
4559     - Fix handling of non-ASCII names (#969309) (dshea)
4560     - Use inline completion for the region/city selection (vpodzime)
4561     - Fix copyright of the main anaconda script (vpodzime)
4562    
4563     * Mon Jul 15 2013 Brian C. Lane <bcl@redhat.com> - 20.2-1
4564     - Use the new wait for connectivity function (mkolman)
4565     - Improve waiting for network connectivity (mkolman)
4566     - Use langtable to get default layout instead of our magic (#485137) (vpodzime)
4567     - Adapt to the new localization module (vpodzime)
4568     - Rewrite the localization module (vpodzime)
4569     - Make the Welcome spoke wait for Geolocation lookup to finish (#975193)
4570     (mkolman)
4571    
4572     * Tue Jul 09 2013 Brian C. Lane <bcl@redhat.com> - 20.1-1
4573     - bump major version number

admin@koozali.org
ViewVC Help
Powered by ViewVC 1.2.1 RSS 2.0 feed