SVN changes between 2 tags in Jenkins

I am using Jenkins to create a release package. After finishing work, I put the new assembly with the specific version into SVN. Now at this point I need to create a letter to the project developer with a report that will show the changes between the two SVN tags, so Lead Dev can quickly look at what is going on production. Has anyone had such an experience?

thank

+3
source share
2 answers

I did something similar in mercury. I took the hg log between the two tags and saved it in a file. So something like svn log -r [tag], I think it will be from tag to end. http://www.bernzilla.com/item.php?id=613

+2
source

, , ( ) - svn diff http://<repo>/tags/<tag1> http://<repo>/tags/<tag2> > diff.txt ( --summarize). diff.txt "" . EmailExt, diff.txt e-mail ${FILE} ( EmailExt ​​ '?', " " ).

diff.txt ( ).

+2

All Articles