Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Is there any way to add code check in comments to release notes in JIRA?

Moriah Chandler
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
May 21, 2013

We don't want to include the summary in release notes and don't want to add a custom field for release notes (unless there is some way to automatically populate it with SVN check in comments via Fisheye). The developers love using smart commits. They will not be happy to have to reenter their checkin comments and/or be forced to resolve issues using JIRA only.

I have read the documentation on creating custom release notes templates, but didn't see anything related to this.

1 answer

0 votes
Midori
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
November 4, 2014

PDF View Plugin for JIRA allows you rendering custom release notes documents, and it can also execute Groovy script during the document generation. That means, that any information that can be accessed programatically, can be included in the release documents.

In your case I'd build this:

  1. Take the list of the issues to be included in the release notes document
  2. Query the commits that include any of these via the Fisheye REST API and process the returned JSON

As an alternative for 2, you may want to try using the Subversion Plugin. As that runs in the same JVM as the PDF View Plugin, you may be able to access commit information using plain vanilla local Java method calls.

custom-release-notes-for-jira.png

Suggest an answer

Log in or Sign up to answer