Files
cheatsheet-tldr/tldr/linux/dnf-changelog
2025-07-10 00:21:00 +00:00

32 lines
751 B
Plaintext

---
syntax: markdown
tags: [tldr, linux]
source: https://github.com/tldr-pages/tldr.git
---
# 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`