Skip to content

Commit

Permalink
Release 5.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
inknos authored Sep 12, 2023
1 parent 1ce386d commit 04a5b2d
Show file tree
Hide file tree
Showing 3 changed files with 83 additions and 2 deletions.
78 changes: 78 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,81 @@
# 5.1.3

- unit test: IniParser: Add tests for exceptions on incorrect input
- unit test: IniParser: Replace raw strings by normal strings
- unit test: IniParser: Test support for ']' char in section header name
- unit test: IniParser: code deduplication
- IniParser: Support ']' char in section header name
- IniParser: Remove unreachable code
- Add directories for repos configuration overrides to the package
- Deduplicate code - move func `create_sorted_file_list` to utils
- RepoSack: Add support for repos configuration overrides
- libdnf5 plugins conf: Log warn if plugin name differs from value in cfg
- libdnf5 actions plugin: Add plugin name to config file
- libdnf5 plugins configuration: Support "name" key to define plugin name
- goal: Refer to canonical debug data file path
- module: Write debug solver data
- Remove accidentally pushed files
- doc: Add libdnf5-plugins to lgpl-2.1-or-later list in COPYING.md
- dnf5: Sort repos in 'repo info' command output
- logger: Deprecate default logfile name
- dnf5: Move log file name from library to dnf5
- logger: create_file_logger accepts log file name
- Fix algorithm in package NEVRA filter
- Base: Remove unused configuration loading methods
- Add drop-in configuration directories to package
- Base: Add support for drop-in configuration directories
- swig: Fix linking targets to dependencies
- Remove unused direct shared object dependencies
- Add missing libraries to link with libdnf5 plugins
- Fix libraries to link with dnf5 plugins
- Remove linking to "libstdc++fs"
- vars: Throw ReadOnlyVariableError when setting read-only var
- vars: Make split_releasever private
- Make releasever_major, releasever_minor read-only
- Rework Vars::substitute to support POSIX-like expansions
- vars: split $releasever to $releasever_major, $releasever_minor
- repoquery: add option conflicts
- repoquery: tweak documentation for --installed/--available and --updates
- repoquery: reorganize setting up argument parser and add comments
- repoquery: rename full_package_query to a more appropriate result_query
- repoquery: reorganize the run method and add some comments
- repoquery: `--recent` option shoudn't configure loading
- repoquery: querytags doesn't need to load any metadata
- Use more appropriate exception in repoqueryformat
- Modify parsing parsing algorithm
- Avoid using GNU extensions in the dependency splitter regex
- changes.rst: --noautoremove was added back
- modules: Add --skip-unavailable option for module commands
- modules: Parametrize module operations with GoalJobSettings
- modules: Report module_specs that were not found
- modules: Add tests for module disable and reset goal operations
- modules: Implement module disable and reset
- modules: Implement adding general module specs to goal, not just enable
- modules: Add a docstring for Goal::add_module_enable
- modules: Add ENABLE, DISABLE, RESET GoalActions
- modules: Change internal module disable and reset to take module_spec
- libdnf: add stdexcept header to fix missing exception error
- Remove unneeded test
- Redo `update_and_load_enabled_repos` test
- Add test for `Repo::load`, start naive test for `RepoSack`
- Add warning to `RepoSack::update_and_load_repos`
- Change repo sack assertion, add repo check, add warning to `update_and_load_repos`
- Prevent repositories from being loaded multiple times
- repoquery: add --location and location querytag
- package: add get_remote_locations
- repoquery: add `--disable-modular-filtering` option
- Add `dsync` alias for `distro-sync`
- reldep_parser: Revert reldep regex to match dnf
- repo: Don't error out on duplicate repo id
- repo_info: Ignore excludes when calculating repo size
- repo_info: Show info about mirrors
- repo_info: Add cache updated info
- repo_info: Hide values when empty
- repo_info: Extend output with repodata, PGP and other info
- repo_info: Load available repos
- repo: Provide function to convert type into string
- Invert dnf5 obsolete logic and make macro more explicit

# 5.1.2

- Print error messages in nested errors
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 1)
set(DEFAULT_PROJECT_VERSION_PATCH 2)
set(DEFAULT_PROJECT_VERSION_PATCH 3)

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 1
%global project_version_patch 2
%global project_version_patch 3

%bcond dnf5_obsoletes_dnf %[0%{?fedora} > 40 || 0%{?rhel} > 10]

Expand Down Expand Up @@ -705,6 +705,9 @@ ln -sr %{buildroot}%{_bindir}/dnf5 %{buildroot}%{_bindir}/microdnf


%changelog
* Tue Sep 12 2023 Packit Team <[email protected]> - 5.1.3-1
- New upstream release 5.1.3

* Wed Aug 16 2023 Packit Team <[email protected]> - 5.1.2-1
- New upstream release 5.1.2

Expand Down

0 comments on commit 04a5b2d

Please sign in to comment.