-
Suggestion
-
Resolution: Unresolved
-
None
-
None
-
11
-
16
-
-
NOTE: This suggestion is for JIRA Server. Using JIRA Cloud? See the corresponding suggestion.
On the Issues Search page, there are fields for filtering by Created, Updated, Due, and Resolved dates. It would be extremely useful if I could filter by the Fix Version release date.
Each Version in a JIRA project has an optional Release Date field. If that release date is set, I'd like to be able to filter on it. So, like the Updated Date fields in Issues Search allows for explicit or relative date values, I'd like to be able to create a query based on a Fix Version's release date.
So instead of saying "Updated After" below, it would say "Fix Version Release Date After" or something.
Example:
Our developers work on multiple projects that each have their own version release dates. I would like to create a filter for my developers where it shows all issues that have a Fix Version release date between now and 1 month in the future.
- is related to
-
JRASERVER-59235 Ability to move or select more than one project versions
- Closed
-
JRASERVER-71725 Filter on 'date time picker' and 'date picker fields'
- Gathering Interest
- relates to
-
JRACLOUD-22640 Filter by fix version release date
- Gathering Interest
-
JRASERVER-20812 Ability to sort issues by release date
- Gathering Interest
For specific dates you can use the following:
fixVersion in releaseDate("on yyyy-mm-dd")
Example: fixVersion in releaseDate("on 2022-10-07")
you can also use a date range with specific dates
fixVersion in releaseDate("after yyyy-mm-dd") AND fixVersion in releaseDate("before yyyy-mm-dd")
Example:fixVersion in releaseDate("after 2021-10-01") AND fixVersion in releaseDate("before 2022-09-30")