Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

Can I get a query for fixversion and it's release date

Jiralearner
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
September 22, 2021

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

1 answer

Suggest an answer

Log in or Sign up to answer
0 votes
Alex Koxaras _Relational_
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
September 22, 2021

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.

TAGS
AUG Leaders

Atlassian Community Events