Right, so I have some upgrades right now and found the problem. mintUpdate is using the "aptitude changelog" command to fetch changelogs, and Internet search shows that this currently doesn't work for some reason (haven't found the specifics). You can easily fix this by replacing "aptitude changelog" with "apt-get changelog", which does the same but does work

I've prepared a patch so you can easily apply this. To proceed, please first exit the Update Manager. Right-click its icon in the panel and choose "Quit". Then download the attached file:
After downloading, extract the mintupdate_changelog_fix.patch from the archive somewhere to your home folder. Then open a terminal at the location where you extracted the file (browse there with your file manager and from its menu select File > Open in Terminal). Then run the following command to apply the patch:
- Code: Select all
sudo patch /usr/lib/linuxmint/mintUpdate/mintUpdate.py mintupdate_changelog_fix.patch
Provide your password when asked (note that the terminal will not show any feedback as your type your password; your keyboard ain't broke

). When all goes well, the output should be "patching file /usr/lib/linuxmint/mintUpdate/mintUpdate.py". Then from the Mint Menu restart the Update Manager and changelogs will be available again

(Provided you did the changes I shared in the earlier comment.)
You may have to re-apply this patch when mintUpdate itself is upgraded. If you want to undo the changes, just run the following command:
- Code: Select all
sudo apt-get install --reinstall mintupdate
Edit: I've submitted the patch also to the GitHub repository (
https://github.com/linuxmint/mintupdate/pull/6).