From 601db301dc9e53d685bbc8e17a6bc55ac7f86c31 Mon Sep 17 00:00:00 2001 From: Kristopher Date: Tue, 8 Jul 2025 20:09:46 -0700 Subject: [PATCH] dnf changelog: add page (#17164) Co-authored-by: Managor <42655600+Managor@users.noreply.github.com> --- pages/linux/dnf-changelog.md | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 pages/linux/dnf-changelog.md diff --git a/pages/linux/dnf-changelog.md b/pages/linux/dnf-changelog.md new file mode 100644 index 0000000000..a5d73b7ae2 --- /dev/null +++ b/pages/linux/dnf-changelog.md @@ -0,0 +1,26 @@ +# dnf changelog + +> View the changelogs for a given package. +> Not default to `dnf` but supported via `dnf-plugins-core`. +> See also: `dnf`. +> More information: . + +- View all changelogs for a given package: + +`dnf changelog {{package}}` + +- View all changelogs for a given package after a specified date: + +`dnf changelog --since {{date}} {{package}}` + +- View the last `n` number of changelogs for a given package: + +`dnf changelog --count {{number}} {{package}}` + +- Show only new items for upgradeable packages: + +`dnf changelog --upgrades {{package}}` + +- Display help: + +`dnf changelog --help-cmd`