awx relese changelog

Hi

Are there any way to read the awx change/diff per docker release/tag?

Now I check github closed pull request and if there are an new awx relese/tag after they should be included.

Regards
Christer

Hey Christer–

Are there any way to read the awx change/diff per docker release/tag?

yep!

for commit changes use git log $oldest_branch..$newest_branch

for a diff of code changes use git diff $oldest_branch..$newest_branch

Now I check github closed pull request and if there are an new awx relese/tag after they should be included.

  1. Check out latest devel from github locally.
  2. find out the commit hash of the commits within the PR (for example, let’s say it is abc123)
  3. run git checkout abc123 (this will put that commit at the top of your tree)
  4. run git describe --first-parent, this will return a version string in the format:

1.0.X-Y-abc123

X will be the particular point release (as tagged in github) and Y will be the # of commits after that release as happened.

So if it was 1.0.2-34-abc123, it would not be in a tagged release yet.

But if it is 1.0.1-234, it should be in release 1.0.2.