Heads up! On March 5, starting at 4:30 PM Central Time, our community will be undergoing scheduled maintenance for a few hours. During this time, you will find the site temporarily inaccessible. Thanks for your patience. Read more.

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

How to filter for ticket added to fixversion after release date

Mattia Gibilaro January 21, 2025

In release page I have 2 data field: 

1) Start Date 

2) Release Date

I want to filter ticket added to that fixversion after the "Start Date". 

Who can I do it with JQL filter? 

 

3 answers

1 accepted

1 vote
Answer accepted
Ralph Gerald Varon
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!
February 17, 2025

 

I don't think that is possible with standard JQL because:

  1. JQL does not support filtering based on FixVersion fields like Start Date or Release Date.
  2. JQL only queries issue fields, and FixVersion metadata is stored separately.
  3. There's no native way to track when an issue was added to a FixVersion in JQL.

But may I suggest a workaround for your automation.

 

Workaround: Using Jira Automation to Extract Dates

If you're looking to retrieve Start Date and Release Date dynamically and use them in an automation, you can do the following:

 

You can use a Send Web Request Block using the following:

  • Method: GET
  • Endpoint: {{baseUrl}}/rest/api/3/version/{{issue.fields.fixVersions.last.id}}
  • Body: Empty
  • ✅ "Delay execution of subsequent rule actions until we've received a response for this web request" check that.

 

Headers:

 

Then use these smart values to get the Start Date and Release Date.

  • Start Date: {{webhookResponse.body.startDate}}
  • Release Date: {{webhookResponse.body.releaseDate}}

 

Screenshot 2025-02-17 200317.png

Screenshot 2025-02-17 200442.png

Screenshot 2025-02-17 200533.png

Hope it helps!

 

 

0 votes
Mattia Gibilaro January 21, 2025

As workaround I need to find a way to monitor that 7 days before the "release date" no other ticket will be added to the fixversion.

0 votes
Bill Sheboy
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.
January 21, 2025

Hi @Mattia Gibilaro -- Welcome to the Atlassian Community!

That is not possible with the build-in features of JQL.

As workarounds you could:

  • investigate marketplace addons which add to JQL, or
  • you could use the CHANGED operator and hardcode the Start Date in the JQL

Please see this documentation page to learn more about the CHANGED operator: https://support.atlassian.com/jira-software-cloud/docs/jql-operators/#CHANGED

Kind regards,
Bill

Suggest an answer

Log in or Sign up to answer