2

How can I find changelog between two AWS ubuntu images released in this site?

https://cloud-images.ubuntu.com/locator/

  • Are you looking for the difference between two images? If so, which images? A changelog is only between successive versions on the same branch, not between different regional images. – user535733 Sep 10 '19 at 13:23
  • I am looking for what is changed between 20190807 and 20190816 release? – Swati Suwalka Sep 10 '19 at 17:33

1 Answers1

2

Here. According to the links in the page I suspect that AWS gets the images from here.

enter image description here

At the bottom of the page, there is a list called "Release Images". In it is a list of directories, each for a specific release of Ubuntu (Both by number and by name).

enter image description here

In each directory is a list of releases for that version of Ubuntu, and at the bottom of each release directory is another directory called "unpacked". In that directory is a file called "release_notes.txt". That has what you're looking for, I think. For example

Note In some of the less current releases you'll get a "403 Forbidden" error when accessing the "Unpacked" directory. Even in those if you just slap "release_notes.txt" at the end of the address bar it will still work.

Uberhumus
  • 197