My Update Manager is set up to download and release security updates silently in the background. Therefore release notes are no longer displayed. I wonder if there is a way to read the release notes later. How could I find out which updates were installed recently and what bugs are fixed?
The results of unattended-upgrades are logged at
/var/log/unattended-upgrades
. Though this will not contain the changelogs; it will show you what has been upgraded. You can then use one of the methods mentioned by others to see the actual changelogs.You might also be interested in the
apticron
package. It can be set up to email you about any packages on the system that need to updated. This email will include summary of changes in each package generated byapt-listchanges
.By default it will mail
root
. If you don't have this set to forward to a real account already, edit/etc/apticron/apticron.conf
, to set the email address:You can find information on most, if not all, security updates right here:
http://www.ubuntu.com/usn
Feeds are available for use in your RSS reader, or you can also subscribe to a mailing list. Both are linked to on that page.
This is not as easy a proccess as it could be.
Identify the packages that have been upgraded
In Ubuntu 11.04 go to the Ubuntu Software Centre, and look in the History section (from the left hand side) and then at the top filter to look only at Updates. This will show you what updates were installed when, and which versions to.
In Ubuntu 10.10 do as above to identify which packages were upgraded and when, but it doesn't tell you the version numbers.
In Ubuntu 10.04 you will need to use Synaptic's history function, because the Software Centre hadn't yet included this functionality.
Visit the Launchpad page for a package. For instance for
update-manager
this is at launchpad.net/ubuntu/+source/update-manager. From the links in the top right of that page you can view the complete changelog (launchpad.net/ubuntu/+source/update-manager/+changelog)From what I heard so far I feel that all put together may give a sufficient anwer to my question:
Find out which package has changed
/usr/share/doc
with Nautilus in "List View" mode sorted by "Date Modified" to give you a list of packages and a date when changes were made./var/log/unattended-upgrades
resp. run Apticron following andrewsomething's answerRead Changelogs of packages in question
usr/share/doc/PACKAGENAME/cangelog.gz
orchangelog.Debian.gz
where all release notes are listed mostly the same as in Launchpad.Which way ever you choose you will be able to see what packages were changed and you can read the changelogs. None is as easy to perform as reading during an attended update but maybe just going to
/usr/share/doc
is almost.