Can't find PVE 9 Changelog

fbassas

New Member
Oct 30, 2025
3
0
1
Hi everibody,
I'm sorry in advance if this is a trivial quesion, but I can not find any place in the docs with de changelog in PVE 9.1 (I meen changes between 9.1.4 and 9.1.5 and so on)
I guess it must be somewhere.
Thanks in advance.

Frank
 
@fbassas
I'll give here a broader hint about how I observe fresh changelogs in PVE (currently in 8.4.19) before installing updates.

1) I have configured mail notifications about available updates:

a) In /etc/pve/datacenter.cfg I have (among others) the line:
notify: package-updates=always

b) In /etc/pve/notifications.cfg I have the lines:

Code:
sendmail: mail-to-root
        author Proxmox VE pmx1
        comment Send mails to root@pam's email address
        mailto-user root@pam

matcher: default-matcher
        comment Route all notifications to mail-to-root
        mode all
        target mail-to-root

matcher: new_packages_are_available
        match-field exact:type=package-updates
        mode all
        target mail-to-root

Note that I don't guarantee that all of these sections are necessary (I remember that I used trial-and-error method to accomplish the result).

2) When I get a mail notification I don't use GUI to install updates, but I log into the PVE host and execute:

cd /var/cache/apt/archives
apt-get update (optional, as basically it's already done by the PVE itself)
apt-get --download-only dist-upgrade
find . -name "*.deb" -cmin -10 -print0 | xargs -r0 apt-listchanges (this finds *.deb files newer that 10 minutes and executes apt-listchanges on them)
apt-get dist-upgrade

HTH
 
Last edited:
  • Like
Reactions: fba and fbassas