The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
I want a report which list all issues for a given project with fix version and it's release date.
This will help management to identify what is the release date if its released else planned release date
Hi @Jiralearner and welcome to the community!
Advanced issue search will only yield issues and the issue fields you select. Having said that, the release date of a version is not part of an issue. Therefore on the search there is no Version Release Date field which you can add.
However, a workaround would be to create a custom Date field, to which you will store the release date of a version to all the issues being released. If you use the API on an issue, you will get a similar response to the following:
"fixVersions": [{
"self": "https://LALALA.atlassian.net/rest/api/3/version/10005",
"id": "10005",
"description": "",
"name": "1.1",
"archived": false,
"released": true,
"releaseDate": "2021-09-22"}],
I would use an automation to send a web request and get this value. Then I would store this value to the custom field of all issues with the released version. Then my JQL would be something like:
fixVersion = Your_Version_Name
And I would simply add the column of the custom field to my results.
Hi everyone, We’re always looking at how to improve Confluence and customer feedback plays an important role in making sure we're investing in the areas that will bring the most value to the most c...
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.