Hello,
I have saved filters for bug tickets created in the current fix version and I can't find a way of running the filter without updating the fix version manually every six weeks with the start and end date.
Is the a way of searching Created in Current Fix Version?
We use - "Fix Start Date" < startOfDay() AND fixVersion in unreleasedVersions() - for displaying tickets IN the current fix version, but this doesn't seem to work with Created In.
Thank you!
Can I confirm you are looking for bugs which are created with a FixVersion which is the next one to be released? You could try:
fixVersion = earliestUnreleasedVersion()
^ This looks for all issues which are in the earliest unreleased version. Earliest is defined as:
Version order is determined by the order versions are placed in on the Releases page in the project. The version at the bottom of the list is considered the "earliest." To change the order of versions, drag and drop them to a new place in the list.
^ Quoted from Advanced Search Reference - JQL Functions
This means you need to place your next release at the bottom of the releases list for the function to work.
Let us know if this works - if not, can you provide more specifics around this, specifically around what "created in" refers to? :)
Ste
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.