be90eb
%global libsolv_version 0.7.21
f23e2a
%global libmodulemd_version 2.13.0
f23e2a
%global librepo_version 1.13.1
f23e2a
%global dnf_conflict 4.10.0-4
f23e2a
%global swig_version 3.0.12
f23e2a
%global libdnf_major_version 0
480e54
%global libdnf_minor_version 69
f23e2a
%global libdnf_micro_version 0
f23e2a
f23e2a
%define __cmake_in_source_build 1
f23e2a
f23e2a
# set sphinx package name according to distro
f23e2a
%global requires_python2_sphinx python2-sphinx
f23e2a
%global requires_python3_sphinx python3-sphinx
f23e2a
%if 0%{?rhel} == 7
f23e2a
    %global requires_python2_sphinx python-sphinx
f23e2a
%endif
f23e2a
%if 0%{?suse_version}
f23e2a
    %global requires_python2_sphinx python2-Sphinx
f23e2a
    %global requires_python3_sphinx python3-Sphinx
f23e2a
%endif
f23e2a
f23e2a
%bcond_with valgrind
f23e2a
f23e2a
# Do not build bindings for python3 for RHEL <= 7
f23e2a
%if 0%{?rhel} && 0%{?rhel} <= 7
f23e2a
%bcond_with python3
f23e2a
%else
f23e2a
%bcond_without python3
f23e2a
%endif
f23e2a
f23e2a
%if 0%{?rhel} > 7 || 0%{?fedora} > 29
f23e2a
# Disable python2 build by default
f23e2a
%bcond_with python2
f23e2a
%else
f23e2a
%bcond_without python2
f23e2a
%endif
f23e2a
f23e2a
%if 0%{?rhel} && ! 0%{?centos}
f23e2a
%bcond_without rhsm
f23e2a
%else
f23e2a
%bcond_with rhsm
f23e2a
%endif
f23e2a
f23e2a
%if 0%{?rhel}
f23e2a
%bcond_with zchunk
f23e2a
%else
f23e2a
%bcond_without zchunk
f23e2a
%endif
f23e2a
f23e2a
%bcond_with sanitizers
f23e2a
f23e2a
%global _cmake_opts \\\
f23e2a
    -DENABLE_RHSM_SUPPORT=%{?with_rhsm:ON}%{!?with_rhsm:OFF} \\\
f23e2a
    %{nil}
f23e2a
f23e2a
Name:           libdnf
f23e2a
Version:        %{libdnf_major_version}.%{libdnf_minor_version}.%{libdnf_micro_version}
be90eb
Release:        3%{?dist}
f23e2a
Summary:        Library providing simplified C and Python API to libsolv
f23e2a
License:        LGPLv2+
f23e2a
URL:            https://github.com/rpm-software-management/libdnf
f23e2a
Source0:        %{url}/archive/%{version}/%{name}-%{version}.tar.gz
480e54
Patch1:         0001-Allow-change-of-arch-during-security-updates-with-no.patch
480e54
Patch2:         0002-Update-translations-RHEL-9.2.patch
480e54
f23e2a
f23e2a
BuildRequires:  cmake
f23e2a
BuildRequires:  gcc
f23e2a
BuildRequires:  gcc-c++
f23e2a
BuildRequires:  libsolv-devel >= %{libsolv_version}
f23e2a
BuildRequires:  pkgconfig(librepo) >= %{librepo_version}
f23e2a
BuildRequires:  pkgconfig(check)
f23e2a
%if %{with valgrind}
f23e2a
BuildRequires:  valgrind
f23e2a
%endif
f23e2a
BuildRequires:  pkgconfig(gio-unix-2.0) >= 2.46.0
f23e2a
BuildRequires:  pkgconfig(gtk-doc)
be90eb
BuildRequires:  rpm-devel >= 4.15.0
f23e2a
%if %{with rhsm}
f23e2a
BuildRequires:  pkgconfig(librhsm) >= 0.0.3
f23e2a
%endif
f23e2a
%if %{with zchunk}
f23e2a
BuildRequires:  pkgconfig(zck) >= 0.9.11
f23e2a
%endif
f23e2a
BuildRequires:  pkgconfig(sqlite3)
f23e2a
BuildRequires:  pkgconfig(json-c)
f23e2a
BuildRequires:  pkgconfig(cppunit)
f23e2a
BuildRequires:  pkgconfig(modulemd-2.0) >= %{libmodulemd_version}
f23e2a
BuildRequires:  pkgconfig(smartcols)
f23e2a
BuildRequires:  gettext
f23e2a
BuildRequires:  gpgme-devel
f23e2a
f23e2a
%if %{with sanitizers}
f23e2a
BuildRequires:  libasan
f23e2a
BuildRequires:  liblsan
f23e2a
BuildRequires:  libubsan
f23e2a
%endif
f23e2a
f23e2a
Requires:       libmodulemd%{?_isa} >= %{libmodulemd_version}
f23e2a
Requires:       libsolv%{?_isa} >= %{libsolv_version}
f23e2a
Requires:       librepo%{?_isa} >= %{librepo_version}
f23e2a
f23e2a
%if %{without python2}
f23e2a
# Obsoleted from here so we can track the fast growing version easily.
f23e2a
# We intentionally only obsolete and not provide, this is a broken upgrade
f23e2a
# prevention, not providing the removed functionality.
f23e2a
Obsoletes:      python2-%{name} < %{version}-%{release}
f23e2a
Obsoletes:      python2-hawkey < %{version}-%{release}
f23e2a
Obsoletes:      python2-hawkey-debuginfo < %{version}-%{release}
f23e2a
Obsoletes:      python2-libdnf-debuginfo < %{version}-%{release}
f23e2a
%endif
f23e2a
f23e2a
%description
f23e2a
A Library providing simplified C and Python API to libsolv.
f23e2a
f23e2a
%package devel
f23e2a
Summary:        Development files for %{name}
f23e2a
Requires:       %{name}%{?_isa} = %{version}-%{release}
f23e2a
Requires:       libsolv-devel%{?_isa} >= %{libsolv_version}
f23e2a
f23e2a
%description devel
f23e2a
Development files for %{name}.
f23e2a
f23e2a
%if %{with python2}
f23e2a
%package -n python2-%{name}
f23e2a
%{?python_provide:%python_provide python2-%{name}}
f23e2a
Summary:        Python 2 bindings for the libdnf library.
f23e2a
Requires:       %{name}%{?_isa} = %{version}-%{release}
f23e2a
BuildRequires:  python2-devel
f23e2a
%if !0%{?mageia}
f23e2a
BuildRequires:  %{requires_python2_sphinx}
f23e2a
%endif
f23e2a
%if 0%{?rhel} == 7
f23e2a
BuildRequires:  swig3 >= %{swig_version}
f23e2a
%else
f23e2a
BuildRequires:  swig >= %{swig_version}
f23e2a
%endif
f23e2a
f23e2a
%description -n python2-%{name}
f23e2a
Python 2 bindings for the libdnf library.
f23e2a
%endif
f23e2a
# endif with python2
f23e2a
f23e2a
%if %{with python3}
f23e2a
%package -n python3-%{name}
f23e2a
%{?python_provide:%python_provide python3-%{name}}
f23e2a
Summary:        Python 3 bindings for the libdnf library.
f23e2a
Requires:       %{name}%{?_isa} = %{version}-%{release}
f23e2a
BuildRequires:  python3-devel
f23e2a
BuildRequires:  %{requires_python3_sphinx}
f23e2a
BuildRequires:  swig >= %{swig_version}
f23e2a
f23e2a
%description -n python3-%{name}
f23e2a
Python 3 bindings for the libdnf library.
f23e2a
%endif
f23e2a
f23e2a
%if %{with python2}
f23e2a
%package -n python2-hawkey
f23e2a
Summary:        Python 2 bindings for the hawkey library
f23e2a
%{?python_provide:%python_provide python2-hawkey}
f23e2a
BuildRequires:  python2-devel
f23e2a
Requires:       %{name}%{?_isa} = %{version}-%{release}
f23e2a
Requires:       python2-%{name} = %{version}-%{release}
f23e2a
# Fix problem with hawkey - dnf version incompatibility
f23e2a
# Can be deleted for distros where only python2-dnf >= 2.0.0
f23e2a
Conflicts:      python2-dnf < %{dnf_conflict}
f23e2a
Conflicts:      python-dnf < %{dnf_conflict}
f23e2a
f23e2a
%description -n python2-hawkey
f23e2a
Python 2 bindings for the hawkey library.
f23e2a
%endif
f23e2a
# endif with python2
f23e2a
f23e2a
%if %{with python3}
f23e2a
%package -n python3-hawkey
f23e2a
Summary:        Python 3 bindings for the hawkey library
f23e2a
%{?python_provide:%python_provide python3-hawkey}
f23e2a
BuildRequires:  python3-devel
f23e2a
Requires:       %{name}%{?_isa} = %{version}-%{release}
f23e2a
Requires:       python3-%{name} = %{version}-%{release}
f23e2a
# Fix problem with hawkey - dnf version incompatibility
f23e2a
# Can be deleted for distros where only python3-dnf >= 2.0.0
f23e2a
Conflicts:      python3-dnf < %{dnf_conflict}
f23e2a
# Obsoletes F27 packages
f23e2a
Obsoletes:      platform-python-hawkey < %{version}-%{release}
f23e2a
f23e2a
%description -n python3-hawkey
f23e2a
Python 3 bindings for the hawkey library.
f23e2a
%endif
f23e2a
f23e2a
%prep
f23e2a
%autosetup -p1
f23e2a
%if %{with python2}
f23e2a
mkdir build-py2
f23e2a
%endif
f23e2a
%if %{with python3}
f23e2a
mkdir build-py3
f23e2a
%endif
f23e2a
f23e2a
%build
f23e2a
%if %{with python2}
f23e2a
pushd build-py2
f23e2a
  %if 0%{?mageia} || 0%{?suse_version}
f23e2a
    cd ..
f23e2a
    %define _cmake_builddir build-py2
f23e2a
    %define __builddir build-py2
f23e2a
  %endif
f23e2a
  %cmake -DPYTHON_DESIRED:FILEPATH=%{__python2} -DWITH_MAN=OFF ../ %{!?with_zchunk:-DWITH_ZCHUNK=OFF} %{!?with_valgrind:-DDISABLE_VALGRIND=1} %{_cmake_opts} -DLIBDNF_MAJOR_VERSION=%{libdnf_major_version} -DLIBDNF_MINOR_VERSION=%{libdnf_minor_version} -DLIBDNF_MICRO_VERSION=%{libdnf_micro_version} \
f23e2a
    -DWITH_SANITIZERS=%{?with_sanitizers:ON}%{!?with_sanitizers:OFF}
f23e2a
  %make_build
f23e2a
popd
f23e2a
%endif
f23e2a
# endif with python2
f23e2a
f23e2a
%if %{with python3}
f23e2a
pushd build-py3
f23e2a
  %if 0%{?mageia} || 0%{?suse_version}
f23e2a
    cd ..
f23e2a
    %define _cmake_builddir build-py3
f23e2a
    %define __builddir build-py3
f23e2a
  %endif
f23e2a
  %cmake -DPYTHON_DESIRED:FILEPATH=%{__python3} -DWITH_GIR=0 -DWITH_MAN=0 -Dgtkdoc=0 ../ %{!?with_zchunk:-DWITH_ZCHUNK=OFF} %{!?with_valgrind:-DDISABLE_VALGRIND=1} %{_cmake_opts} -DLIBDNF_MAJOR_VERSION=%{libdnf_major_version} -DLIBDNF_MINOR_VERSION=%{libdnf_minor_version} -DLIBDNF_MICRO_VERSION=%{libdnf_micro_version} \
f23e2a
    -DWITH_SANITIZERS=%{?with_sanitizers:ON}%{!?with_sanitizers:OFF}
f23e2a
  %make_build
f23e2a
popd
f23e2a
%endif
f23e2a
f23e2a
%check
f23e2a
%if %{with python2}
f23e2a
pushd build-py2
f23e2a
  make ARGS="-V" test
f23e2a
popd
f23e2a
%endif
f23e2a
%if %{with python3}
f23e2a
# If we didn't run the general tests yet, do it now.
f23e2a
%if %{without python2}
f23e2a
pushd build-py3
f23e2a
  make ARGS="-V" test
f23e2a
popd
f23e2a
%else
f23e2a
# Otherwise, run just the Python tests, not all of
f23e2a
# them, since we have coverage of the core from the
f23e2a
# first build
f23e2a
pushd build-py3/python/hawkey/tests
f23e2a
  make ARGS="-V" test
f23e2a
popd
f23e2a
%endif
f23e2a
%endif
f23e2a
f23e2a
%install
f23e2a
%if %{with python2}
f23e2a
pushd build-py2
f23e2a
  %make_install
f23e2a
popd
f23e2a
%endif
f23e2a
%if %{with python3}
f23e2a
pushd build-py3
f23e2a
  %make_install
f23e2a
popd
f23e2a
%endif
f23e2a
f23e2a
%find_lang %{name}
f23e2a
f23e2a
%if (0%{?rhel} && 0%{?rhel} <= 7) || 0%{?suse_version}
f23e2a
%post -p /sbin/ldconfig
f23e2a
%postun -p /sbin/ldconfig
f23e2a
%else
f23e2a
%ldconfig_scriptlets
f23e2a
%endif
f23e2a
f23e2a
%files -f %{name}.lang
f23e2a
%license COPYING
f23e2a
%doc README.md AUTHORS
f23e2a
%{_libdir}/%{name}.so.*
f23e2a
%dir %{_libdir}/libdnf/
f23e2a
%dir %{_libdir}/libdnf/plugins/
f23e2a
%{_libdir}/libdnf/plugins/README
f23e2a
%if %{with sanitizers}
f23e2a
%{_sysconfdir}/profile.d/dnf-sanitizers.sh
f23e2a
%endif
f23e2a
f23e2a
%files devel
f23e2a
%doc %{_datadir}/gtk-doc/html/%{name}/
f23e2a
%{_libdir}/%{name}.so
f23e2a
%{_libdir}/pkgconfig/%{name}.pc
f23e2a
%{_includedir}/%{name}/
f23e2a
f23e2a
%if %{with python2}
f23e2a
%files -n python2-%{name}
f23e2a
%{python2_sitearch}/%{name}/
f23e2a
%endif
f23e2a
f23e2a
%if %{with python3}
f23e2a
%files -n python3-%{name}
f23e2a
%{python3_sitearch}/%{name}/
f23e2a
%endif
f23e2a
f23e2a
%if %{with python2}
f23e2a
%files -n python2-hawkey
f23e2a
%{python2_sitearch}/hawkey/
f23e2a
%endif
f23e2a
f23e2a
%if %{with python3}
f23e2a
%files -n python3-hawkey
f23e2a
%{python3_sitearch}/hawkey/
f23e2a
%endif
f23e2a
f23e2a
%changelog
480e54
* Wed Mar 08 2023 Marek Blaha <mblaha@redhat.com> - 0.69.0-3
480e54
- Update translations
480e54
480e54
* Mon Oct 31 2022 Nicola Sella <nsella@redhat.com> - 0.69.0-2
480e54
- Allow change of arch during security updates with noarch
480e54
480e54
* Thu Sep 22 2022 Lukas Hrazky <lhrazky@redhat.com> - 0.69.0-1
480e54
- Update to 0.69.0
480e54
- Expose librepo max_downloads_per_mirror configuration
480e54
- Fix listing a repository without cpeid (RhBug:2066334)
480e54
- Gracefully handle failure to open repo primary file
480e54
- context: Fix doc dnf_context_install/remove/update/distrosync
480e54
- context: dnf_context_remove accepts `<package-spec>` as dnf, unify code
480e54
- dnf-context: Disconnect signal handler before dropping file monitor ref
480e54
be90eb
* Thu Sep 15 2022 Marek Blaha <mblaha@redhat.com> - 0.67.0-3
f23e2a
- Update translations
f23e2a
be90eb
* Thu Jul 21 2022 Lukas Hrazky <lhrazky@redhat.com> - 0.67.0-2
be90eb
- Add obsoletes to filtering for advisory candidates
be90eb
- advisory upgrade: filter out advPkgs with different arch
be90eb
be90eb
* Thu Apr 28 2022 Pavla Kratochvilova <pkratoch@redhat.com> - 0.67.0-1
be90eb
- Fix handling transaction id in resolveTransactionItemReason (RhBug:2010259,2053014)
be90eb
- Remove deprecated assertions (RhBug:2027383)
be90eb
- Skip rich deps for autodetection of unmet dependencies (RhBug:2033130, 2048394)
be90eb
- Increase required rpm version since we use `rpmdbCookie()`
be90eb
- Add 'loongarch' support
be90eb
- Use dnf solv userdata to check versions and checksum (RhBug:2027445)
be90eb
- context: Substitute all repository config options (RhBug:2076853)
f23e2a
f23e2a
* Mon Feb 07 2022 Pavla Kratochvilova <pkratoch@redhat.com> - 0.65.0-3
f23e2a
- Use `rpmdbCookie` from librpm, remove `hawkey.Sack._rpmdb_version`
f23e2a
f23e2a
* Thu Dec 09 2021 Pavla Kratochvilova <pkratoch@redhat.com> - 0.65.0-2
f23e2a
- Rebuilt with json-c-0.14-11.el9 (RhBug:2023320)
f23e2a
f23e2a
* Mon Oct 25 2021 Pavla Kratochvilova <pkratoch@redhat.com> - 0.65.0-1
f23e2a
- Update to 0.65.0
f23e2a
- Implement logic for demodularization of modular rpms (RhBug:1805260)
f23e2a
- DnfContext: fix handling of default module profiles
f23e2a
- ModuleMetadata: gracefully handle modules with no defaults
f23e2a
- Remove failovermethod config option (RhBug:1961083)
f23e2a
- Add support for excluding packages to be installed as weak dependencies
f23e2a
- Add support for autodetecting packages to be excluded from being installed as weak dependencies
f23e2a
- Turn off strict validation of modulemd documents (RhBug:2004853,2007166,2007167)
f23e2a
f23e2a
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 0.63.0-4
f23e2a
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
f23e2a
  Related: rhbz#1991688
f23e2a
f23e2a
* Tue Jul 27 2021 Pavla Kratochvilova <pkratoch@redhat.com> - 0.63.0-3
f23e2a
- Fix some covscan warnings
f23e2a
f23e2a
* Wed Jun 16 2021 Mohan Boddu <mboddu@redhat.com> - 0.63.0-2
f23e2a
- Rebuilt for RHEL 9 BETA for openssl 3.0
f23e2a
  Related: rhbz#1971065
f23e2a
f23e2a
* Wed Jun 02 2021 Pavla Kratochvilova <pkratoch@redhat.com> - 0.63.0-1
f23e2a
- Fix: Fully set ssl in newHandle function
f23e2a
- [conf] Add options for working with certificates used with proxy
f23e2a
- lock: Switch return-if-fail to assert to quiet gcc -fanalyzer
f23e2a
- Modify module NSVCA parsing - context definition (RhBug:1926771)
f23e2a
- [context] Fix: dnf_package_is_installonly (RhBug:1928056)
f23e2a
- Add getApplicablePackages to advisory and isApplicable to advisorymodule
f23e2a
- Keep isAdvisoryApplicable to preserve API
f23e2a
- Run ModulePackageContainerTest tests in tmpdir, merge interdependent
f23e2a
- [context] Support config file option "proxy_auth_method", defaults "any"
f23e2a
- Hardening: add signature check with rpmcliVerifySignatures (RhBug:1932079)
f23e2a
- Do not allow 1 as installonly_limit value (RhBug:1926261)
f23e2a
- Add a config option to check TLS certificate revocation status (using OCSP stapling), defaults to false (RhBug:1814383)
f23e2a
- ModuleProfile: add isDefault()
f23e2a
- ModulePackage: add getDefaultProfile()
f23e2a
- Add new dnf_context_module_install() C API
f23e2a
- Fix a crash when [media] section in .treeinfo is missing for bootable media (RhBug:1946024)
f23e2a
f23e2a
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 0.60.0-2
f23e2a
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
f23e2a
f23e2a
* Tue Mar 02 2021 Nicola Sella <nsella@redhat.com> - 0.60.0-1
f23e2a
- Update to 0.60.0
f23e2a
- Fix repo.fresh() implementation
f23e2a
- build-sys: Add ENABLE_STATIC option
f23e2a
- Fix: Fully set ssl in newHandle function
f23e2a
- [conf] Add options for working with certificates used with proxy
f23e2a
- Apply proxy certificate options
f23e2a
- lock: Switch return-if-fail to assert to quiet gcc -fanalyzer
f23e2a
- build-sys: Clean up message about Python bindings
f23e2a
- Modify module NSVCA parsing - context definition (RhBug:1926771)
f23e2a
- [context] Fix: dnf_package_is_installonly (RhBug:1928056)
f23e2a
- Fix problematic language
f23e2a
- Add getApplicablePackages to advisory and isApplicable to advisorymodule
f23e2a
- Keep isAdvisoryApplicable to preserve API
f23e2a
- Run ModulePackageContainerTest tests in tmpdir, merge interdependent
f23e2a
- [context] Support config file option "proxy_auth_method", defaults "any"
f23e2a
- Support main config file option "installonlypkgs".
f23e2a
- Support main config file option "protected_packages".
f23e2a
- Properly handle multiple collections in updateinfo.xml (RhBug:1804234)
f23e2a
f23e2a
* Thu Jan 28 2021 Nicola Sella <nsella@redhat.com> - 0.58.0-1
f23e2a
- Update to 0.58.0
f23e2a
- Option: Add reset() method
f23e2a
- Add OptionBinds::getOption() method
f23e2a
- [context] Add dnf_repo_conf_from_gkeyfile() and dnf_repo_conf_reset()
f23e2a
- [context] Add support for options: minrate, throttle, bandwidth, timeout
f23e2a
- [context] Remove g_key_file_get_string() from dnf_repo_set_keyfile_data()
f23e2a
- Allow loading ext metadata even if only cache (solv) is present
f23e2a
- Add ASAN_OPTIONS for test_libdnf_main
f23e2a
- [context,API] Functions for accessing main/global configuration options
f23e2a
- [context,API] Function for adding setopt
f23e2a
- Add getter for modular obsoletes from ModuleMetadata
f23e2a
- Add ModulePackage.getStaticContext() and getRequires()
f23e2a
- Add compatible layer for MdDocuments v2
f23e2a
- Fix modular queries with the new solver
f23e2a
- Improve formatting of error string for modules
f23e2a
- Change mechanism of module conflicts
f23e2a
- Fix load/update FailSafe
f23e2a
f23e2a
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.55.2-2
f23e2a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
f23e2a
f23e2a
* Wed Dec 02 2020 Nicola Sella <nsella@redhat.com> - 0.55.2-1
f23e2a
- Update to 0.55.2
f23e2a
- Improve performance of query installed() and available()
f23e2a
- Swdb: Add a method to get the current transaction
f23e2a
- [modules] Add special handling for src artifacts (RhBug:1809314)
f23e2a
- Better msgs if "basecachedir" or "proxy_password" isn't set (RhBug:1888946)
f23e2a
- Add new options module_stream_switch
f23e2a
- Support allow_vendor_change setting in dnf context API
f23e2a
- Fix couple of sanitizer builds in specfile
f23e2a
f23e2a
* Mon Nov 23 2020 Nicola Sella <nsella@redhat.com> - 0.55.0-1
f23e2a
- Update to 0.55.0
f23e2a
- Add vendor to dnf API (RhBug:1876561)
f23e2a
- Add formatting function for solver error
f23e2a
- Add error types in ModulePackageContainer
f23e2a
- Implement module enable for context part
f23e2a
- Improve string formatting for translation
f23e2a
- Remove redundant printf and change logging info to notice (RhBug:1827424)
f23e2a
- Add allow_vendor_change option (RhBug:1788371) (RhBug:1788371)
f23e2a
f23e2a
* Thu Oct 29 2020 Adam Williamson <awilliam@redhat.com> - 0.54.2-3
f23e2a
- Rebuild to keep NVR ahead of Fedora 32
f23e2a
f23e2a
* Tue Oct 13 2020 Ales Matej <amatej@redhat.com> - 0.54.2-2
f23e2a
- Increase needed conflicting dnf version
f23e2a
f23e2a
* Wed Oct 07 2020 Nicola Sella <nsella@redhat.com> - 0.54.2-1
f23e2a
- Update to 0.54.2
f23e2a
- history: Fix dnf history rollback when a package was removed (RhBug:1683134)
f23e2a
- Add support for HY_GT, HY_LT in query nevra_strict
f23e2a
- Fix parsing empty lines in config files
f23e2a
- Accept '==' as an operator in reldeps (RhBug:1847946)
f23e2a
- Add log file level main config option (RhBug:1802074)
f23e2a
- Add protect_running_kernel configuration option (RhBug:1698145)
f23e2a
- Context part of libdnf cannot assume zchunk is on (RhBug:1851841,1779104)
f23e2a
- Fix memory leak of resultingModuleIndex and handle g_object refs
f23e2a
- Redirect librepo logs to libdnf logs with different source
f23e2a
- Introduce changelog metadata in commit messages
f23e2a
- Add hy_goal_lock
f23e2a
- Update Copr targets for packit and use alias
f23e2a
- Enum/String conversions for Transaction Store/Replay
f23e2a
- utils: Add a method to decode URLs
f23e2a
- Unify hawkey.log line format with the rest of the logs
f23e2a
f23e2a
* Mon Aug 10 2020 Nicola Sella <nsella@redhat.com> - 0.48.0-4
f23e2a
- spec: Fix building with new cmake macros
f23e2a
- tests: Fix incorrect usage of the fail_unless macros
f23e2a
f23e2a
* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.48.0-3
f23e2a
- Second attempt - Rebuilt for
f23e2a
  https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
f23e2a
f23e2a
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.48.0-2
f23e2a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
f23e2a
f23e2a
* Tue Jun 02 2020 Nicola Sella <nsella@redhat.com> - 0.48.0-1
f23e2a
- Update to 0.48.0
f23e2a
- swdb: Catch only SQLite3 exceptions and simplify the messages
f23e2a
- MergedTransaction list multiple comments (RhBug:1773679)
f23e2a
- Modify CMake to pull *.po files from weblate
f23e2a
- Optimize DependencyContainer creation from an existing queue
f23e2a
- fix a memory leak in dnf_package_get_requires()
f23e2a
- Fix memory leaks on g_build_filename()
f23e2a
- Fix memory leak in dnf_context_setup()
f23e2a
- Add `hy_goal_favor` and `hy_goal_disfavor`
f23e2a
- Define a cleanup function for `DnfPackageSet`
f23e2a
- dnf-repo: fix dnf_repo_get_public_keys double-free
f23e2a
- Do not cache RPMDB
f23e2a
- Use single-quotes around string literals used in SQL statements
f23e2a
- SQLite3: Do not close the database if it wasn't opened (RhBug:1761976)
f23e2a
- Don't create a new history DB connection for in-memory DB
f23e2a
- transaction/Swdb: Use a single logger variable in constructor
f23e2a
- utils: Add a safe version of pathExists()
f23e2a
- swdb: Handle the case when pathExists() fails on e.g. permission
f23e2a
- Repo: prepend "file://" if a local path is used as baseurl
f23e2a
- Move urlEncode() to utils
f23e2a
- utils: Add 'exclude' argument to urlEncode()
f23e2a
- Encode package URL for downloading through librepo (RhBug:1817130)
f23e2a
- Replace std::runtime_error with libdnf::RepoError
f23e2a
- Fixes and error handling improvements of the File class
f23e2a
- [context] Use ConfigRepo for gpgkey and baseurl (RhBug:1807864)
f23e2a
- [context] support "priority" option in .repo config file (RhBug:1797265)
f23e2a
f23e2a
* Fri May 22 2020 Miro Hrončok <mhroncok@redhat.com> - 0.47.0-3
f23e2a
- Rebuilt for Python 3.9
f23e2a
f23e2a
* Tue Apr 21 2020 Björn Esser <besser82@fedoraproject.org> - 0.47.0-2
f23e2a
- Rebuild (json-c)
f23e2a
f23e2a
* Wed Apr 01 2020 Ales Matej <amatej@redhat.com> - 0.47.0-1
f23e2a
- Update to 0.47.0
f23e2a
- Add prereq_ignoreinst & regular_requires properties for pkg (RhBug:1543449)
f23e2a
- Reset active modules when no module enabled or default (RhBug:1767351)
f23e2a
- Add comment option to transaction (RhBug:1773679)
f23e2a
- Failing to get module defauls is a recoverable error
f23e2a
- Baseurl is not exclusive with mirrorlist/metalink (RhBug: 1775184)
f23e2a
- Add new function to reset all modules in C API (dnf_context_reset_all_modules)
f23e2a
- [context] Fix to preserve additionalMetadata content (RhBug:1808677)
f23e2a
- Fix filtering of DepSolvables with source rpms (RhBug:1812596)
f23e2a
- Add setter for running kernel protection setting
f23e2a
- Handle situation when an unprivileged user cannot create history database (RhBug:1634385)
f23e2a
- Add query filter: latest by priority
f23e2a
- Add DNF_NO_PROTECTED flag to allow empty list of protected packages
f23e2a
- Remove 'dim' option from terminal colors to make them more readable (RhBug:1807774,1814563)
f23e2a
- [context] Error when main config file can't be opened (RhBug:1794864)
f23e2a
- [context] Add function function dnf_context_is_set_config_file_path
f23e2a
f23e2a
* Mon Feb 24 2020 Ales Matej <amatej@redhat.com> - 0.45.0-1
f23e2a
- Config options: only first empty value clears existing (RhBug:1788154)
f23e2a
- Make parsing of reldeps more strict (RhBug:1788107)
f23e2a
- [context] Support repositories defined in main configuration file
f23e2a
- Fix filtering packages by advisory when more versions and arches are available (RhBug:1770125)
f23e2a
- Add expanding solvable provides for dependency matching (RhBug:1534123)
f23e2a
- DnfRepo: fix module_hotfixes keyfile priority level
f23e2a
- Add custom exceptions to libdnf interface
f23e2a
- [conf] Set useful default colors when color is enabled
f23e2a
- Port to libmodulemd-2 API (RhBug:1693683)
f23e2a
f23e2a
* Tue Feb 04 2020 Adam Williamson <adamwill@fedoraproject.org> - 0.43.1-3
f23e2a
- [context] Create new repo instead of reusing old one (RhBug:1795004)
f23e2a
f23e2a
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.43.1-2
f23e2a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
f23e2a
f23e2a
* Wed Jan 15 2020 Ales Matej <amatej@redhat.com> - 0.43.1-1
f23e2a
- Allow excluding packages with "excludepkgs" and globs
f23e2a
- Add two new query filters: obsoletes_by_priority, upgrades_by_priority
f23e2a
- [context] Use installonly_limit from global config (RhBug:1256108)
f23e2a
- [context] Add API to get/set "install_weak_deps"
f23e2a
- [context] Add wildcard support for repo_id in dnf_context_repo_enable/disable (RhBug:1781420)
f23e2a
- [context] Adds support for includepkgs in repository configuration.
f23e2a
- [context] Adds support for excludepkgs, exclude, includepkgs, and disable_excludes in main configuration.
f23e2a
- [context] Added function dnf_transaction_set_dont_solve_goal
f23e2a
- [context] Added functions dnf_context_get/set_config_file_path
f23e2a
- [context] Respect "plugins" global conf value
f23e2a
- [context] Add API to disable/enable plugins
f23e2a
f23e2a
* Fri Nov 29 2019 Ales Matej <amatej@redhat.com> - 0.39.1-1
f23e2a
- Update to 0.39.1
f23e2a
- Report reason how package was excluded (RhBug:1649754)
f23e2a
- Additional Arm detection improvements (RhBug:1691430)
f23e2a
- Set skip_if_unavailable for media repos to skip their update (RhBug:1716067)
f23e2a
- Add support of xml:base for remote and local url in context (RhBug:1734350, 1717865)
f23e2a
- Handle NoModuleException in dnf_context_reset_modules (RhBug:1767453)
f23e2a
- Add missing C function hy_nevra_free() for HyNevra deallocation
f23e2a
- Context part of libdnf now uses metadata_expire from global configuration 
f23e2a
f23e2a
* Wed Nov 13 2019 Pavla Kratochvilova <pkratoch@redhat.com> - 0.37.2-2
f23e2a
- Fix accidental code removal from hy_subject_get_best_solution()
f23e2a
f23e2a
* Wed Nov 06 2019 Pavla Kratochvilova <pkratoch@redhat.com> - 0.37.2-1
f23e2a
- Update to 0.37.2
f23e2a
- Use more descriptive message when failed to retrieve GPG key (RhBug:1605117)
f23e2a
- Add removeMetadataTypeFromDownload function to the API
f23e2a
- Context part of libdnf can now read vars (urlvars) from dirs and environment
f23e2a
- Throw exception immediately if file cannot be opened
f23e2a
- Add test when there is no primary metadata in compatible format (RhBug:1744960)
f23e2a
- Various improvements to countme features
f23e2a
- Don't abort on rpmdb checksum calculation failure
f23e2a
- Enable module dependency trees when using set_modules_enabled_by_pkgset() (RhBug:1762314)
f23e2a
- New method "Query::filterSubject()", replaces Solution::getBestSolution()
f23e2a
- The Solution class was removed
f23e2a
- Add query argument into get_best_query and get_best_solution
f23e2a
- Add module reset function into dnf_context
f23e2a
- Add method to get all repository metadata locations
f23e2a
- Catch NoModuleException in case of not existent value was used in persistor (RhBug:1761773)
f23e2a
f23e2a
* Wed Oct 23 2019 Peter Robinson <pbrobinson@fedoraproject.org> 0.35.5-5
f23e2a
- Fixes for some issues on Arm platforms (rhbz 1691430)
f23e2a
f23e2a
* Tue Oct 22 2019 Ales Matej <amatej@redhat.com> - 0.35.5-4
f23e2a
- Fix leaking log handlers in Sack that can cause a crash (RhBug:1758737)
f23e2a
f23e2a
* Mon Oct 14 2019 Jaroslav Mracek <jmracek@redhat.com> - 0.35.5-3
f23e2a
- Add POOL_FLAG_WHATPROVIDESWITHDISABLED flag into pool.
f23e2a
- Resolves: 1737469
f23e2a
f23e2a
* Tue Oct 01 2019 Ales Matej <amatej@redhat.com> - 0.35.5-2
f23e2a
- Fix dnf-conflict version
f23e2a
f23e2a
* Tue Oct 01 2019 Ales Matej <amatej@redhat.com> - 0.35.5-1
f23e2a
- Update to 0.35.5
f23e2a
- Fix crash in PackageKit (RhBug:1636803)
f23e2a
- Do not create @System.solv files (RhBug:1707995)
f23e2a
- Set LRO_CACHEDIR so zchunk works again (RhBug:1739867)
f23e2a
- Don't reinstall modified packages with the same NEVRA (RhBug:1644241)
f23e2a
- Fix bug when moving temporary repository metadata after download (RhBug:1700341)
f23e2a
- Improve detection of extras packages by comparing (name, arch) pair instead of full NEVRA (RhBuh:1684517)
f23e2a
- Improve handling multilib packages in the history command (RhBug:1728637)
f23e2a
- Repo download: use full error description into the exception text (RhBug:1741442)
f23e2a
- Properly close hawkey.log (RhBug:1594016)
f23e2a
- Fix dnf updateinfo --update to not list advisories for packages updatable only from non-enabled modules
f23e2a
- Apply modular filtering by package name (RhBug:1702729)
f23e2a
- Fully enable the modular fail safe mechanism (RhBug:1616167)
f23e2a
f23e2a
* Sat Sep 14 2019 Jonathan Dieter <jdieter@gmail.com> - 0.35.3-5
f23e2a
- Set LRO_CACHEDIR so zchunk works again
f23e2a
f23e2a
* Wed Sep 11 2019 Jaroslav Mracek <jmracek@redhat.com> - 0.35.3-4
f23e2a
- Backport patch to fix reinstalling packages with a different buildtime - part II
f23e2a
f23e2a
* Tue Sep 10 2019 Jaroslav Mracek <jmracek@redhat.com> - 0.35.3-3
f23e2a
- Backport patch to fix reinstalling packages with a different buildtime
f23e2a
f23e2a
* Thu Aug 15 2019 Miro Hrončok <mhroncok@redhat.com> - 0.35.3-2
f23e2a
- Rebuilt for Python 3.8
f23e2a
f23e2a
* Tue Aug 13 2019 Pavla Kratochvilova <pkratoch@redhat.com> - 0.35.3-1
f23e2a
- Update to 0.35.3
f23e2a
- Make libdnf own its plugin directory (RhBug:1714265)
f23e2a
- Don't disable nonexistent but required repositories (RhBug:1689331)
f23e2a
- Set priority of dnf.conf.d drop-ins
f23e2a
- Fix toString() to not insert [] (RhBug:1584442)
f23e2a
- Ignore trailing blank lines in config (RhBug:1722493)
f23e2a
- Fix handling large number of filenames on input (RhBug:1690915)
f23e2a
- Detect armv7 with crypto extension only on arm version >= 8
f23e2a
- A new standardized User-Agent field consisting of the libdnf and OS version
f23e2a
  (including the variant) (RhBug:1156007)
f23e2a
- Add basic countme support (RhBug:1647454)
f23e2a
f23e2a
* Mon Jul 29 2019 Pavla Kratochvilova <pkratoch@redhat.com> - 0.35.1-4
f23e2a
- Rebuilt for librepo 1.10.5
f23e2a
f23e2a
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.35.1-3
f23e2a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
f23e2a
f23e2a
* Mon Jul 22 2019 Pavla Kratochvilova <pkratoch@redhat.com> - 0.35.1-2
f23e2a
- Backport patch to fix attaching and detaching of libsolvRepo and
f23e2a
  repo_internalize_trigger() (RhBug:1727343,1727424)
f23e2a
f23e2a
* Thu Jul 04 2019 Pavla Kratochvilova <pkratoch@redhat.com> - 0.35.1-1
f23e2a
- Update to 0.35.1
f23e2a
- Enhance logging handling
f23e2a
- Do not log DEBUG messages by default
f23e2a
- Also add subkeys when adding GPG keys
f23e2a
- [module] Fix swig binding for getModuleDependencies()
f23e2a
- Skip invalid key files in "/etc/pki/rpm-gpg" with warning (RhBug:1644040)
f23e2a
- Enable timestamp preserving for downloaded data (RhBug:1688537)
f23e2a
- Set default to skip_if_unavailable=false (RhBug:1679509)
f23e2a
- Add configuration option skip_if_unavailable (RhBug:1689931)
f23e2a
- Fix 'database is locked' error (RhBug:1631533)
f23e2a
- Replace the 'Failed to synchronize cache' message (RhBug:1712055)
f23e2a
- Fix 'no such table: main.trans_cmdline' error (RhBug:1596540)
f23e2a
- Add support of modular FailSafe (RhBug:1623128) (temporarily with warnings
f23e2a
  instead of errors when installing modular RPMs without modular metadata)
f23e2a
- Add support of DNF main config file in context; used by PackageKit and
f23e2a
  microdnf (RhBug:1689331)
f23e2a
- Exit gpg-agent after repokey import (RhBug:1650266)
f23e2a
f23e2a
* Mon Jun 10 22:13:19 CET 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.31.0-5
f23e2a
- Rebuild for RPM 4.15
f23e2a
f23e2a
* Mon Jun 10 15:42:02 CET 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.31.0-4
f23e2a
- Rebuild for RPM 4.15
f23e2a
f23e2a
* Fri May 03 2019 Pavla Kratochvilova <pkratoch@redhat.com> - 0.31.0-3
f23e2a
- Backport patches to reintroduce hawkeyRepo
f23e2a
f23e2a
* Thu Apr 25 2019 Pavla Kratochvilova <pkratoch@redhat.com> - 0.31.0-1
f23e2a
- Update to 0.31.0
f23e2a
- Installroot now requires absolute path
f23e2a
- Support "_none_" value for repo option "proxy" (RhBug:1680272)
f23e2a
- Add support for Module advisories
f23e2a
- Add support for xml:base attribute from primary.xml (RhBug:1691315)
f23e2a
- Improve detection of Platform ID (RhBug:1688462)
f23e2a
f23e2a
* Wed Mar 27 2019 Pavla Kratochvilova <pkratoch@redhat.com> - 0.28.1-1
f23e2a
- Update to 0.28.1
f23e2a
- Return empty query if incorrect reldep (RhBug:1687135)
f23e2a
- ConfigParser: Improve compatibility with Python ConfigParser and dnf-plugin-spacewalk (RhBug:1692044)
f23e2a
- ConfigParser: Unify default set of string represenation of boolean values
f23e2a
- Fix segfault when interrupting dnf process (RhBug:1610456)
f23e2a
f23e2a
* Mon Mar 11 2019 Pavla Kratochvilova <pkratoch@redhat.com> - 0.28.0-1
f23e2a
- Update to 0.28.0
f23e2a
- Exclude module pkgs that have conflict
f23e2a
- Enhance config parser to preserve order of data, and keep comments and format
f23e2a
- Improve ARM detection
f23e2a
- Add support for SHA-384
f23e2a
f23e2a
* Tue Feb 19 2019 Jaroslav Mracek <jmracek@redhat.com> - 0.26.0-2
f23e2a
- Backport patches for zchunk
f23e2a
f23e2a
* Wed Feb 13 2019 Pavla Kratochvilova <pkratoch@redhat.com> - 0.26.0-1
f23e2a
- Update to 0.26.0-1
f23e2a
- Enhance modular solver to handle enabled and default module streams differently (RhBug:1648839)
f23e2a
- Add support of wild cards for modules (RhBug:1644588)
f23e2a
- Revert commit that adds best as default behavior
f23e2a
f23e2a
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.24.1-2
f23e2a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
f23e2a
f23e2a
* Wed Dec 12 2018 Jaroslav Mracek <jmracek@redhat.com> - 0.24.1-1
f23e2a
- Update to 0.24.1
f23e2a
- Add support for zchunk
f23e2a
- Enhance LIBDNF plugins support
f23e2a
- Enhance sorting for module list (RhBug:1590358)
f23e2a
- [repo] Check whether metadata cache is expired (RhBug:1539620,1648274)
f23e2a
- [DnfRepo] Add methods for alternative repository metadata type and download (RhBug:1656314)
f23e2a
- Remove installed profile on module  enable or disable (RhBug:1653623)
f23e2a
- [sack] Implement dnf_sack_get_rpmdb_version()
f23e2a
f23e2a
* Thu Nov 22 2018 Jaroslav Mracek <jmracek@redhat.com> - 0.22.3-1
f23e2a
- Permanently disable Python2 build for Fedora 30+
f23e2a
- Update to 0.22.3
f23e2a
- Modify solver_describe_decision to report cleaned (RhBug:1486749)
f23e2a
- [swdb] create persistent WAL files (RhBug:1640235)
f23e2a
- Relocate ModuleContainer save hook (RhBug:1632518)
f23e2a
- [transaction] Fix transaction item lookup for obsoleted packages (RhBug: 1642796)
f23e2a
- Fix memory leaks and memory allocations
f23e2a
- [repo] Possibility to extend downloaded repository metadata
f23e2a
f23e2a
* Wed Nov 07 2018 Jaroslav Mracek <jmracek@redhat.com> - 0.22.0-8
f23e2a
- Backport fixes for RHBZ#1642796 from upstream master
f23e2a
f23e2a
* Tue Oct 30 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.22.0-7
f23e2a
- Rebuild for libsolv 0.7
f23e2a
f23e2a
* Tue Oct 23 2018 Jaroslav Mracek <jmracek@redhat.com> - 0.22.0-6
f23e2a
- Add patch Relocate-ModuleContainer-save-hook-RhBug1632518
f23e2a
- Add patch Test-if-sack-is-present-and-run-save-module-persistor-RhBug1632518
f23e2a
f23e2a
* Sat Oct 20 2018 Jaroslav Mracek <jmracek@redhat.com> - 0.22.0-5
f23e2a
- remove problematic patch Relocate-ModuleContainer-save-hook-RhBug1632518
f23e2a
f23e2a
* Fri Oct 19 2018 Jaroslav Mracek <jmracek@redhat.com> - 0.22.0-4
f23e2a
- backport Relocate-ModuleContainer-save-hook-RhBug1632518
f23e2a
f23e2a
* Thu Oct 18 2018 Jaroslav Mracek <jmracek@redhat.com> - 0.22.0-3
f23e2a
- bacport swdb-create-persistent-WAL-files-RhBug1640235
f23e2a
f23e2a
* Wed Oct 17 2018 Jaroslav Mracek <jmracek@redhat.com> - 0.22.0-2
f23e2a
- backport Modify-solver_describe_decision-to-report-cleaned-RhBug1486749
f23e2a
- backport history-Fix-crash-in-TransactionItemaddReplacedBy
f23e2a
f23e2a
* Mon Oct 15 2018 Jaroslav Mracek <jmracek@redhat.com> - 0.22.0-1
f23e2a
- Update to 0.22.0
f23e2a
- Fix segfault in repo_internalize_trigger (RhBug:1375895)
f23e2a
- Change sorting of installonly packages (RhBug:1627685)
f23e2a
- [swdb] Fixed pattern searching in history db (RhBug:1635542)
f23e2a
- Check correctly gpg for repomd when refresh is used (RhBug:1636743)
f23e2a
- [conf] Provide additional VectorString methods for compatibility with Python list.
f23e2a
- [plugins] add plugin loading and hooks into libdnf
f23e2a
f23e2a
* Sat Sep 29 2018 Kevin Fenzi <kevin@scrye.com> - 0.20.0-2
f23e2a
- Temp re-enable python2 subpackages to get rawhide composing again.
f23e2a
f23e2a
* Tue Sep 25 2018 Jaroslav Mracek <jmracek@redhat.com> - 0.20.0-1
f23e2a
- [module] Report module solver errors
f23e2a
- [module] Enhance module commands and errors
f23e2a
- [transaction] Fixed several problems with SWDB
f23e2a
- Remove unneeded regex URL tests (RhBug:1598336)
f23e2a
- Allow quoted values in ini files (RhBug:1624056)
f23e2a
- Filter out not unique set of solver problems (RhBug:1564369)
f23e2a
- Disable python2 build for Fedora 30+
f23e2a
f23e2a
* Tue Sep 18 2018 Adam Williamson <awilliam@redhat.com> - 0.19.1-3
f23e2a
- Backport PR #585 for an update crash bug (#1629340)
f23e2a
f23e2a
* Fri Sep 14 2018 Kalev Lember <klember@redhat.com> - 0.19.1-2
f23e2a
- Backport a fix for a packagekit crasher / F29 Beta blocker (#1626851)
f23e2a
f23e2a
* Mon Sep 10 2018 Jaroslav Mracek <jmracek@redhat.com> - 0.19.1-1
f23e2a
- Fix compilation errors on gcc-4.8.5
f23e2a
- [module] Allow module queries on disabled modules
f23e2a
f23e2a
* Fri Sep 07 2018 Jaroslav Mracek <jmracek@redhat.com> - 0.19.0-1
f23e2a
- [query] Reldeps can contain a space char (RhBug:1612462)
f23e2a
- [transaction] Avoid adding duplicates via Transaction::addItem()
f23e2a
- Fix compilation errors on gcc-4.8.5
f23e2a
- [module] Make available ModuleProfile using SWIG
f23e2a
- [module] Redesign module disable and reset
f23e2a
f23e2a
* Mon Aug 13 2018 Daniel Mach <dmach@redhat.com> - 0.17.2-1
f23e2a
- [sqlite3] Change db locking mode to DEFAULT.
f23e2a
- [doc] Add libsmartcols-devel to devel deps.
f23e2a
f23e2a
* Mon Aug 13 2018 Daniel Mach <dmach@redhat.com> - 0.17.1-1
f23e2a
- [module] Solve a problem in python constructor of NSVCAP if no version.
f23e2a
- [translations] Update translations from zanata.
f23e2a
- [transaction] Fix crash after using dnf.comps.CompsQuery and forking the process in Anaconda.
f23e2a
- [module] Support for resetting module state.
f23e2a
- [output] Introduce wrapper for smartcols.
f23e2a
f23e2a
* Fri Aug 10 2018 Adam Williamson <awilliam@redhat.com> - 0.17.0-2
f23e2a
- Backport fix that prevented anaconda running dnf in a subprocess (#546)
f23e2a
f23e2a
* Tue Aug 07 2018 Daniel Mach <dmach@redhat.com> - 0.17.0-1
f23e2a
- [conf] Add module_platform_id option.
f23e2a
- [module] Add ModulePackageContainer class.
f23e2a
- [module] Add ModulePersistor class.
f23e2a
- [sack] Module filtering made available in python API
f23e2a
- [sack] Module auto-enabling according to installed packages
f23e2a
f23e2a
* Fri Jul 27 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.16.1-3
f23e2a
- Rebuild for new binutils
f23e2a
f23e2a
* Fri Jul 27 2018 Daniel Mach <dmach@redhat.com> - 0.16.1-2
f23e2a
- [module] Implement 'module_hotfixes' conf option to skip filtering RPMs from hotfix repos.
f23e2a
- [goal] Fix distupgrade filter, allow downgrades.
f23e2a
- [context] Allow to set module platform in context.
f23e2a
- [module] Introduce proper modular dependency solving.
f23e2a
- [module] Platform pseudo-module based on /etc/os-release.
f23e2a
- [goal] Add Goal::listSuggested().
f23e2a
- [l10n] Support for translations, add gettext build dependency.
f23e2a
f23e2a
* Sun Jul 22 2018 Daniel Mach <dmach@redhat.com> - 0.16.0-1
f23e2a
- Fix RHSM plugin
f23e2a
- Add support for logging
f23e2a
- Bump minimal libmodulemd version to 1.6.1
f23e2a
f23e2a
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.15.2-2
f23e2a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
f23e2a
f23e2a
* Fri Jun 29 2018 Jaroslav Mracek <jmracek@redhat.com> - 0.15.2-1
f23e2a
- Update to 0.15.1
f23e2a
- Resolves: rhbz#1595487
f23e2a
f23e2a
* Fri Jun 29 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.15.1-2
f23e2a
- Restore proper ldconfig_scriptlets
f23e2a
f23e2a
* Tue Jun 26 2018 Jaroslav Mracek <jmracek@redhat.com> - 0.15.1-1
f23e2a
- Update to 0.15.1
f23e2a
f23e2a
* Fri Jun 15 2018 Miro Hrončok <mhroncok@redhat.com> - 0.11.1-6
f23e2a
- Rebuilt for Python 3.7
f23e2a
f23e2a
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.11.1-5
f23e2a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
f23e2a
f23e2a
* Tue Jan 30 2018 Igor Gnatenko <ignatenko@redhat.com> - 0.11.1-4
f23e2a
- Switch to %%ldconfig_scriptlets
f23e2a
f23e2a
* Tue Nov 07 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.11.1-3
f23e2a
- Use better Obsoletes for platform-python
f23e2a
f23e2a
* Fri Nov 03 2017 Igor Gnatenko <ignatenko@redhat.com> - 0.11.1-2
f23e2a
- Remove platform-python subpackage
f23e2a
f23e2a
* Mon Oct 16 2017 Jaroslav Mracek <jmracek@redhat.com> - 0.11.1-1
f23e2a
- Rerelease of 0.11.1-1
f23e2a
- Improvement query performance
f23e2a
- Run file query in hy_subject_get_best_solution only for files (arguments that start with ``/`` or
f23e2a
  ``*/``)
f23e2a
- Resolves: rhbz#1498207 - DNF crash during upgrade installation F26 -> F27
f23e2a
f23e2a
* Tue Oct 10 2017 Igor Gnatenko <ignatenko@redhat.com> - 0.11.0-1
f23e2a
- Update to 0.11.0
f23e2a
f23e2a
* Mon Oct 02 2017 Jaroslav Mracek <jmracek@redhat.com> - 0.10.1-2
f23e2a
- Rerelease of 0.10.1-1
f23e2a
f23e2a
* Wed Sep 27 2017 Jaroslav Mracek <jmracek@redhat.com> - 0.10.1-1
f23e2a
- Update to 0.10.1
f23e2a
- It improves query performance with name and arch filters. Also nevra filter will now
f23e2a
  handle string with or without epoch.
f23e2a
- Additionally for python bindings it renames NEVRA._has_just_name() to NEVRA.has_just_name() due
f23e2a
  to movement of code into c part of library.
f23e2a
- Resolves: rhbz#1260242 - --exclude does not affect dnf remove's removal of requirements
f23e2a
- Resolves: rhbz#1485881 - DNF claims it cannot install package, which have been already installed
f23e2a
- Resolves: rhbz#1361187 - [abrt] python-ipython-console: filter_updown(): python3.5 killed by SIGABRT
f23e2a
f23e2a
* Fri Sep 15 2017 Igor Gnatenko <ignatenko@redhat.com> - 0.9.3-8
f23e2a
- Disable platform python on old releases
f23e2a
f23e2a
* Tue Aug 15 2017 Lumír Balhar <lbalhar@redhat.com> - 0.9.3-7
f23e2a
- Add platform-python subpackage
f23e2a
f23e2a
* Fri Aug 11 2017 Igor Gnatenko <ignatenko@redhat.com> - 0.9.3-6
f23e2a
- Rebuilt after RPM update (№ 3)
f23e2a
f23e2a
* Thu Aug 10 2017 Igor Gnatenko <ignatenko@redhat.com> - 0.9.3-5
f23e2a
- Rebuilt for RPM soname bump
f23e2a
f23e2a
* Thu Aug 10 2017 Igor Gnatenko <ignatenko@redhat.com> - 0.9.3-4
f23e2a
- Rebuilt for RPM soname bump
f23e2a
f23e2a
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.3-3
f23e2a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
f23e2a
f23e2a
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.3-2
f23e2a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
f23e2a
f23e2a
* Mon Jul 24 2017 Jaroslav Mracek <jmracek@redhat.com> - 0.9.3-1
f23e2a
- Update to 0.9.3
f23e2a
f23e2a
* Sat Jul 01 2017 Igor Gnatenko <ignatenko@redhat.com> - 0.9.2-1
f23e2a
- Update to 0.9.2
f23e2a
f23e2a
* Mon Jun 12 2017 Jaroslav Mracek <jmracek@redhat.com> - 0.9.1-1
f23e2a
- Update to 0.9.1
f23e2a
f23e2a
* Mon May 22 2017 Jaroslav Mracek <jmracek@redhat.com> - 0.9.0-1
f23e2a
- Update to 0.9.0
f23e2a
f23e2a
* Tue May 02 2017 Jaroslav Mracek <jmracek@redhat.com> - 0.8.2-1
f23e2a
- Update to 0.8.2
f23e2a
f23e2a
* Fri Mar 24 2017 Igor Gnatenko <ignatenko@redhat.com> - 0.8.1-1
f23e2a
- Update to 0.8.1
f23e2a
f23e2a
* Tue Mar 21 2017 Jaroslav Mracek <jmracek@redhat.com> - 0.8.0-1
f23e2a
- Update to 0.8.0
f23e2a
f23e2a
* Mon Feb 20 2017 Igor Gnatenko <ignatenko@redhat.com> - 0.7.4-1
f23e2a
- Update to 0.7.4
f23e2a
f23e2a
* Fri Feb 10 2017 Igor Gnatenko <ignatenko@redhat.com> - 0.7.3-1
f23e2a
- Update to 0.7.3
f23e2a
f23e2a
* Wed Feb 08 2017 Igor Gnatenko <ignatenko@redhat.com> - 0.7.2-1
f23e2a
- 0.7.2
f23e2a
f23e2a
* Fri Jan 06 2017 Igor Gnatenko <ignatenko@redhat.com> - 0.7.1-1
f23e2a
- 0.7.1
f23e2a
f23e2a
* Wed Dec 21 2016 Peter Robinson <pbrobinson@fedoraproject.org> 0.7.0-0.7gitf9b798c
f23e2a
- Rebuild for Python 3.6
f23e2a
f23e2a
* Mon Dec 19 2016 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.7.0-0.6gitf9b798c
f23e2a
- Use new upstream URL
f23e2a
f23e2a
* Tue Dec 13 2016 Stratakis Charalampos <cstratak@redhat.com> - 0.7.0-0.5gitf9b798c
f23e2a
- Rebuild for Python 3.6
f23e2a
f23e2a
* Tue Dec 06 2016 Martin Hatina <mhatina@redhat.com> - 0.7.0-0.4gitf9b798c
f23e2a
- Increase conflict version of dnf
f23e2a
f23e2a
* Thu Dec 01 2016 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.7.0-0.3gitf9b798c
f23e2a
- Update to latest snapshot
f23e2a
f23e2a
* Fri Nov 04 2016 Igor Gnatenko <ignatenko@redhat.com> - 0.7.0-0.2git8bd77f8
f23e2a
- Update to latest snapshot
f23e2a
f23e2a
* Thu Sep 29 2016 Igor Gnatenko <ignatenko@redhat.com> - 0.7.0-0.1git179c0a6
f23e2a
- Initial package