The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

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

JQL for work issues and bugs closed within a release

philViavi
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!
January 13, 2020

Hi, we specify releases that contain start and end dates, is it possible to query using the name of the release as a reference for passing the dates to the query for example

 

project = myProject AND issuetype in (Bug, Epic, Story) AND status in (Closed, resolved) AND "Allocated Team" in (myTeam) AND resolved >= myRelease.StartDate AND resolved <= myReleaseEndDate 

1 answer

1 accepted

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

0 votes
Answer accepted
Fernando Bordallo
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
January 13, 2020

You can't use variables out of the box, no.

Scriptrunner allows you to use additional JQL functions or to make your own. For instance, you could create your own latestUnreleasedVersion() function that would always return, hum, the latest unreleased version.

Check out the documentation.