2

We have JIRA issues with the following fields:

  • Affects version - version where issue is noticed
  • Target version - version in which we want to fix the issue
  • Fix version - version where issue is really fixed

The release planning is based on the fix version, I suppose per default. How could it be changed to use the target version? We set the fix version when closing an issue, so it is not at all appropriate for the planning.

Antiohia
  • 1,142
  • 13
  • 37

1 Answers1

8

"Affects version" and "Fix version" are system fields in JIRA and various screens are based on them. This is logic that you cannot change.

The "Target version" is not a default JIRA field, so it must have been added as a custom field on your instance.

Instead of trying to change the concept of a "Fix version" you're better of using it as it is intended by JIRA and customising your own logic with custom fields that you add yourself. Otherwise screens like JIRA's "Releases" view will not behave as expected.

So you should use the "Fix version" field to plan the target release and update it with the appropriate version if the actual release changes. For any other kind of version info that you like, introduce your own fields.

In the "Releases" view you can click on "View in Issue Navigator" on the right side: enter image description here This will show the JQL that is used by that view and it will show something like:

project = 12421 AND fixVersion = 17740 ORDER BY priority DESC, key ASC

This is hardcoded and I don't know of a way to customise this.

GlennV
  • 3,471
  • 4
  • 26
  • 39
  • Thank you. I knew that Target version is not a standard field but I was thinking that there are many people using it (I have seen it on multiple boards) and have hoped that there is a way to change the behavior of the Releases view to use the other field. Is there really no such option? JIRA seemed to be quite customizable... – Antiohia Jun 17 '16 at 11:27
  • 1
    I've updated the answer a bit. I don't know of a way to customise this part of JIRA. – GlennV Jun 17 '16 at 11:45