@gling although a well-maintained change log can be convenient, there is no guarantee that it reflects the changes that have actually been made.
You may already be aware but you can use
git log
to view a history of the commit messages.
You can also use
git diff HEAD~1
to compare the state of the repo to the previous version,