Skip to content

Commit

Permalink
Release 5.0.12
Browse files Browse the repository at this point in the history
  • Loading branch information
inknos committed May 25, 2023
1 parent fb2ddf9 commit a959feb
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 4 deletions.
29 changes: 27 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# Next release

# 5.0.12

- Have DNF update to DNF5
- Add dnf, yum obsoletes and provides
- Symlinks for `dnf` and `yum` binaries
- Move ownership of /etc/dnf/dnf.conf, /etc/dnf/vars, and
/etc/dnf/protected.d from dnf-data to libdnf5
- Conflict with older versions of dnf-data that own these files/directories
- Print environments in the transaction table
- Add support for environmantal groups in dnf5daemon
- Handle unnamed groups in transaction table
- Update documentation for `distro-sync --skip-unavailable`
- Update documentation for `downgrade --skip-unavailable`
- Update documentation for `upgrade --skip-unavailable`
- Add repoquery `--files` and `files` querytag instead of `--list`
- Add getters to package for: debug, source, repo-name
- Add `repoquery --querytags` option
- Document `repoquery --queryformat`
- Add `repoquery --qf` alias to `repoquery --queryformat`
- Add get_depends() to package and --depends to repoquery
- Implement keepcache functionality (RhBug:2176384)
- API changes:
- libdnf::repo::PackageDownloader default ctor dropped (now accepting the Base object)
Expand All @@ -8,6 +26,13 @@
- Regardless of the keepcache option, all downloaded packages have been cached up until now.
- Starting from now, downloaded packages will be kept only until the next successful transaction (keepcache=False by default).
- To remove all existing packages from the cache, use the `dnf5 clean packages` command.
- goal: Split group specs resolution to separate method
- comps: Possibility to create an empty EnvironmentQuery
- `remove` command accepts `remove spec`
- Refactor remove positional arguments
- Remove duplicates from `group list` output
- Document `copr` plugin command
- Document `builddep` plugin command

# 5.0.11

Expand Down
2 changes: 1 addition & 1 deletion VERSION.cmake
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
set(DEFAULT_PROJECT_VERSION_MAJOR 5)
set(DEFAULT_PROJECT_VERSION_MINOR 0)
set(DEFAULT_PROJECT_VERSION_PATCH 11)
set(DEFAULT_PROJECT_VERSION_PATCH 12)

if(DEFINED PROJECT_VERSION_MAJOR)
if(NOT ${DEFAULT_PROJECT_VERSION_MAJOR} STREQUAL ${PROJECT_VERSION_MAJOR})
Expand Down
5 changes: 4 additions & 1 deletion dnf5.spec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
%global project_version_major 5
%global project_version_minor 0
%global project_version_patch 11
%global project_version_patch 12

Name: dnf5
Version: %{project_version_major}.%{project_version_minor}.%{project_version_patch}
Expand Down Expand Up @@ -645,6 +645,9 @@ ln -sr %{buildroot}%{_bindir}/dnf5 %{buildroot}%{_bindir}/microdnf


%changelog
* Thu May 25 2023 Packit Team <[email protected]> - 5.0.12-1
- New upstream release 5.0.12

* Thu May 18 2023 Packit Team <[email protected]> - 5.0.11-1
- New upstream release 5.0.11

Expand Down

0 comments on commit a959feb

Please sign in to comment.