HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

dnf changelog — View the changelogs for a given package. Not default to `dnf` but supported via `dnf-plugins-core`.

Submitted by: @import:tldr-pages··
0
Viewed 0 times
thegivencommandchangelogsdnf changelogcliforview
linux

Problem

How to use the dnf changelog command: View the changelogs for a given package. Not default to dnf but supported via dnf-plugins-core. See also: dnf. More information: <https://dnf-plugins-core.readthedocs.io/en/latest/changelog.html>.

Solution

dnf changelog — View the changelogs for a given package. Not default to dnf but supported via dnf-plugins-core. See also: dnf. More information: <https://dnf-plugins-core.readthedocs.io/en/latest/changelog.html>.

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

Code Snippets

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

Context

tldr-pages: linux/dnf changelog

Revisions (0)

No revisions yet.