I have 2 filters:
Find items removed from release during last week:
project = TNC AND type = Story and fixVersion WAS IN (25cw36) ON -1w and (fixVersion != 25CW36 or fixVersion is empty) order by priority desc
Find items added to the release during last week:
project = TNC AND type = Story and fixVersion = 25CW36 and fixVersion WAS NOT IN (25cw36) ON -1w order by priority desc
#2 works as expected, while #1 displays work items that I have removed from 25CW36 way before -1w, for example (queried on July 11, 2025):
Hi Dmytro,
For number 1 if you ran it yesterday, it would have been off by one day. Try -2w just for fun to see if it shows up.
Hi @Dmytro G
Try the following JQL.
project = TNC AND type = Story AND fixVersion WAS 25CW36 AND fixVersion != 25CW36
AND fixVersion CHANGED FROM 25CW36 DURING (-1w, now()) ORDER BY priority DESC
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.