New version 35.15-1
- Make the coverage status about tests informational (vponcova) - network: check NM availability before running some methods (#1937185) (rvykydal) - Migrate from pytz to zoneinfo, list (close to) all time zones (miro) - Change logic in NFS validation (vslavik) - Avoid a race condition during Connect to Red Hat spoke initialization (mkolman) - Tweak dependabot configuration (jkonecny) - Use .codecov.yml from the main branch (vponcova) - Fix boot options generated by the dracut module (vponcova) - Simplify the code for working with kickstart repositories (vponcova) - Remove the _enabled_repos property of the DNF payload (vponcova) - Remove the addons property of the DNF payload (vponcova) - Move post installation scripts to the end of queue (lveyde) - Add support for repomd.xml hashes to the DNF manager (vponcova) - Deduplicate dependency metapackages (vslavik) - Do not use pip cache when building containers (#infra) (vslavik) - Revert "Use GitHub environment gating for kstests workflow" (#infra) (jkonecny) - Move NTP server dialog to its own file (vslavik) - Simplify the unit tests with DNF repositories (vponcova) - Test GetFormatTypeData for all format types (vponcova) - Add the repositories property to the DNF manager (vponcova) - Remove comments about ConditionArchitecture (vslavik) - Add common bug with incomplete VG because of ignoredisk (jkonecny) - Fix AskVNCSpoke call (vslavik) - Improve X startup error messages (vslavik) - Terminate X server after timeout and restore crash test handler (vslavik) - Reorganize control flow in startX (vslavik) - Handle SIGUSR1 correctly after Xorg timeout (vslavik) - Refactor minor details in startX (vslavik) - Small fixups of metacity replacement. (rvykydal) - Remove unnecessary workaround to always build ELN containers (#infra) (jkonecny) - Remove temp workaround to solve podman issue on GH runners (#infra) (jkonecny) - makebumpver: allow BZ to be also in POST (#infra) (rvykydal) - scripts: do not require "Fixed in version" set for release (#infra) (rvykydal) - Remove github-action-run-once script from anaconda-ci (#infra) (jkonecny) - Clean DNF to make the anaconda-rpm container smaller (#infra) (jkonecny) - Add the load_repository method to the DNF manager (vponcova) - Add a badge with the current coverage (vponcova) - Configure codecov.io (vponcova) - Upload coverage to codecov.io (vponcova) - Add base repo name for CentOS Stream after repository renaming (jkonecny) - Remove parse-kickstart tests which don't test anything useful (rvykydal) - Fix basic dracut parse-kickstart tests for network configuration (rvykydal) - Fix parse-kickstart bridge test (rvykydal)
This commit is contained in:
parent
3a7e42467f
commit
62f42fa896
1
.gitignore
vendored
1
.gitignore
vendored
@ -287,3 +287,4 @@
|
||||
/anaconda-35.12.tar.bz2
|
||||
/anaconda-35.13.tar.bz2
|
||||
/anaconda-35.14.tar.bz2
|
||||
/anaconda-35.15.tar.bz2
|
||||
|
@ -1,6 +1,6 @@
|
||||
Summary: Graphical system installer
|
||||
Name: anaconda
|
||||
Version: 35.14
|
||||
Version: 35.15
|
||||
Release: 1%{?dist}
|
||||
License: GPLv2+ and MIT
|
||||
URL: http://fedoraproject.org/wiki/Anaconda
|
||||
@ -108,7 +108,6 @@ Requires: subscription-manager >= %{subscriptionmanagerver}
|
||||
# which is apparently great for containers but unhelpful for the rest of us
|
||||
Requires: cracklib-dicts
|
||||
|
||||
Requires: python3-pytz
|
||||
Requires: teamd
|
||||
%ifarch s390 s390x
|
||||
Requires: openssh
|
||||
@ -197,30 +196,17 @@ pulling in all the install time dependencies as well.
|
||||
%package install-img-deps
|
||||
Summary: Installation image specific dependencies
|
||||
# This package must have no weak dependencies.
|
||||
Requires: udisks2-iscsi
|
||||
Requires: libblockdev-plugins-all >= %{libblockdevver}
|
||||
# active directory/freeipa join support
|
||||
Requires: realmd
|
||||
Requires: isomd5sum >= %{isomd5sumver}
|
||||
# Pull in most stuff with the -env- metapackage
|
||||
Requires: anaconda-install-env-deps = %{version}-%{release}
|
||||
# Require storage things that are only recommended in -env-
|
||||
%ifarch %{ix86} x86_64
|
||||
Requires: fcoe-utils >= %{fcoeutilsver}
|
||||
%endif
|
||||
# likely HFS+ resize support
|
||||
%ifarch %{ix86} x86_64
|
||||
%if ! 0%{?rhel}
|
||||
Requires: hfsplus-tools
|
||||
%endif
|
||||
%endif
|
||||
# kexec support
|
||||
Requires: kexec-tools
|
||||
# needed for proper driver disk support - if RPMs must be installed, a repo is needed
|
||||
Requires: createrepo_c
|
||||
# run's on TTY1 in install env
|
||||
Requires: tmux
|
||||
# install time crash handling
|
||||
Requires: gdb
|
||||
# support for installation from image and live & live image installations
|
||||
Requires: rsync
|
||||
# only WeakRequires elsewhere and not guaranteed to be present
|
||||
Requires: device-mapper-multipath
|
||||
# FIXME: do not require on RHEL until the package is ready
|
||||
@ -418,6 +404,57 @@ desktop-file-install --dir=%{buildroot}%{_datadir}/applications %{buildroot}%{_d
|
||||
%{_prefix}/libexec/anaconda/dd_*
|
||||
|
||||
%changelog
|
||||
* Mon May 17 2021 Martin Kolman <mkolman@redhat.com> - 35.15-1
|
||||
- Make the coverage status about tests informational (vponcova)
|
||||
- network: check NM availability before running some methods (#1937185)
|
||||
(rvykydal)
|
||||
- Migrate from pytz to zoneinfo, list (close to) all time zones (miro)
|
||||
- Change logic in NFS validation (vslavik)
|
||||
- Avoid a race condition during Connect to Red Hat spoke initialization
|
||||
(mkolman)
|
||||
- Tweak dependabot configuration (jkonecny)
|
||||
- Use .codecov.yml from the main branch (vponcova)
|
||||
- Fix boot options generated by the dracut module (vponcova)
|
||||
- Simplify the code for working with kickstart repositories (vponcova)
|
||||
- Remove the _enabled_repos property of the DNF payload (vponcova)
|
||||
- Remove the addons property of the DNF payload (vponcova)
|
||||
- Move post installation scripts to the end of queue (lveyde)
|
||||
- Add support for repomd.xml hashes to the DNF manager (vponcova)
|
||||
- Deduplicate dependency metapackages (vslavik)
|
||||
- Do not use pip cache when building containers (#infra) (vslavik)
|
||||
- Revert "Use GitHub environment gating for kstests workflow" (#infra)
|
||||
(jkonecny)
|
||||
- Move NTP server dialog to its own file (vslavik)
|
||||
- Simplify the unit tests with DNF repositories (vponcova)
|
||||
- Test GetFormatTypeData for all format types (vponcova)
|
||||
- Add the repositories property to the DNF manager (vponcova)
|
||||
- Remove comments about ConditionArchitecture (vslavik)
|
||||
- Add common bug with incomplete VG because of ignoredisk (jkonecny)
|
||||
- Fix AskVNCSpoke call (vslavik)
|
||||
- Improve X startup error messages (vslavik)
|
||||
- Terminate X server after timeout and restore crash test handler (vslavik)
|
||||
- Reorganize control flow in startX (vslavik)
|
||||
- Handle SIGUSR1 correctly after Xorg timeout (vslavik)
|
||||
- Refactor minor details in startX (vslavik)
|
||||
- Small fixups of metacity replacement. (rvykydal)
|
||||
- Remove unnecessary workaround to always build ELN containers (#infra)
|
||||
(jkonecny)
|
||||
- Remove temp workaround to solve podman issue on GH runners (#infra)
|
||||
(jkonecny)
|
||||
- makebumpver: allow BZ to be also in POST (#infra) (rvykydal)
|
||||
- scripts: do not require "Fixed in version" set for release (#infra)
|
||||
(rvykydal)
|
||||
- Remove github-action-run-once script from anaconda-ci (#infra) (jkonecny)
|
||||
- Clean DNF to make the anaconda-rpm container smaller (#infra) (jkonecny)
|
||||
- Add the load_repository method to the DNF manager (vponcova)
|
||||
- Add a badge with the current coverage (vponcova)
|
||||
- Configure codecov.io (vponcova)
|
||||
- Upload coverage to codecov.io (vponcova)
|
||||
- Add base repo name for CentOS Stream after repository renaming (jkonecny)
|
||||
- Remove parse-kickstart tests which don't test anything useful (rvykydal)
|
||||
- Fix basic dracut parse-kickstart tests for network configuration (rvykydal)
|
||||
- Fix parse-kickstart bridge test (rvykydal)
|
||||
|
||||
* Wed May 05 2021 Martin Kolman <mkolman@redhat.com> - 35.14-1
|
||||
- Document too little memory for LUKS setup (vslavik)
|
||||
- Remove redundant logging messages from the DNF module (vponcova)
|
||||
|
2
sources
2
sources
@ -1 +1 @@
|
||||
SHA512 (anaconda-35.14.tar.bz2) = 385df54753de9fa1ee4469222824141a9921776349ca7d2eedb98d5ae75777f96b45b1c122788dc8a1b157a00c59c172dc2bc119ce450ae35aeb01881e4bcc18
|
||||
SHA512 (anaconda-35.15.tar.bz2) = fe2b2f1e6d099c82dced34b4ca723f58adbceb8c1dce6d45c0528c258a643097f9d2c478c4d1b5bd0e8c85133ee6904f11ac128069c9791c2bf7e1d3e8b1cee9
|
||||
|
Loading…
Reference in New Issue
Block a user