List of changes for Bazzite builds

Is there any neat list of changes from build to build that I can see that looks kind of like the list shown on the major releases page for Bazzite?

IE: Releases · ublue-os/bazzite · GitHub

But if I want to know what changes have taken place in “stable-40.20240826.0” vs “stable-40.20240822.0” I can’t find any info.

Also, quick question… what is the difference between “ujust upgrade” and “bazzite-rollback-helper rebase stable”?

Thanks

1 Like

ujust changelogs maybe?!

ujust changelogs seems to only list changes on major releases, ie: Releases · ublue-os/bazzite · GitHub

You can use the following command to find out which packages have changed after an update. This shows the difference between two ostree images on your system:

rpm-ostree db diff --changelogs

In theory, you could also get a list of changes before the update.

To find the commit ID of the available image, use this command:

rpm-ostree upgrade --check

To find the commit ID of your current active image, use this command:

rpm-ostree status

Finally, you can see the difference between the two images with the following command:

rpm-ostree db diff [commit ID of your active image] [commit ID of the available update] --changelogs

This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.