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

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

issue.getFixVersions() NOT returning archived fixversions

Edited

Hi,

I have this code snipppet:

import com.atlassian.jira.project.version.Version
Collection <Version> fixVersions = issue.getFixVersions()

for (fv in fixVersions) {
    log.debug (String.format('issue=%s fv=%s isArchived=%s isReleased=%s', issue.key, fv.getName(),
                             fv.isArchived(), fv.isReleased()))
  if (fv.isReleased()) {
    log.debug("yes ${fv.getName()} is released.")
  }
}

When i run it using "Groovy Script Tester" from JMWE (Jira Misc Workflow Extensions), i see:

DEBUG: issue=PRJ-90210 fv=foo.1.0 isArchived=true isReleased=true
DEBUG: yes foo.1.0 is released.
DEBUG: issue=PRJ-90210 fv=bar.3.0 isArchived=false isReleased=false

which is the expected results.

Running this code snippet in the Scriptrunner Script Console

IssueManager issueManager = ComponentAccessor.getIssueManager() 
Issue issue = issueManager.getIssueObject('PRJ-90210')
Collection <Version> fixVersions = issue.getFixVersions()

for (fv in fixVersions) {
    log.debug (String.format('issue=%s fv=%s isArchived=%s isReleased=%s', issue.key, fv.getName(),
                             fv.isArchived(), fv.isReleased()))
  if (fv.isReleased()) {
    log.debug("yes ${fv.getName()} is released.")
  }
}
 

gives the expected output as seen in the "Groovy Script Tester".

However, when i run the same exact code snippet as a Scriptrunner Validator, i only see:

issue=PRJ-90210 fv=bar.3.0 isArchived=false isReleased=false

The archived fixversion (foo.1.0) did NOT show up.

What could be the problem?

Thanks

--Andrew

1 answer

Suggest an answer

Log in or Sign up to answer

Hi, I've found a solution to get the archived fix versions in the scriptrunner validators. Here is my code:

 

import com.atlassian.jira.issue.Issue;
import com.atlassian.jira.issue.IssueManager;
import com.atlassian.jira.component.ComponentAccessor;

import com.opensymphony.workflow.InvalidInputException

IssueManager issueManager = ComponentAccessor.getIssueManager()
Issue myIssue = issueManager.getIssueObject(issue.getKey())

// myIssue -> the issue object in the past. 
// issue -> the issue object in validation time
// To avoid false positive when removing all the fixed versions, we are checking if any of these fixed versions of the issue in the past are archived. if (issue.getResolution().name == "Fixed or Completed" && ! (issue.fixVersions || myIssue.fixVersions*.archived.contains(true))) { throw new InvalidInputException("fixVersions", "Fix Version/s is required when specifying Resolution of 'Fixed'") }

 

As you can see, my solution is to instance another issue object with the same key. 

TAGS
AUG Leaders

Atlassian Community Events