Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Help with updating the Fix Version field with a specific version

Ameer Syed February 28, 2023

I tried one the solution shared in this forum to update the fixversion, but having issues. 

In the below code, user updating the issue with all unreleased version.

But, How can we updated the issue with a specific unreleased version? I would like to pass the version value through some variable. Really appreciate any help.

import com.atlassian.jira.component.ComponentAccessor

def versionManager = ComponentAccessor.getVersionManager()
def project = issue.getProjectObject()
def version = versionManager.getVersionsUnreleased(project.getId(), true)

if (version) {
issue.setFixVersions(version)
log.info("${issue.key} - fix version/s has been updated with ${version}")
}
else{
log.warn("Version does not available")
}

 

2 answers

1 accepted

0 votes
Answer accepted
PD Sheehan
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
February 28, 2023

Where are you executing this?
Is it in a post function?

What this script does is look up ALL the unreleased versions in the project and adds them to the FixVersion field.

Probably the original post where you found it, they were managing the releases such that they only ever had 1 available to select and populate.

You must either hard code the name or id of the fix version you wish to apply.

You might also be able to add a keyword in the release description so that you can find it.

For example:

import com.atlassian.jira.component.ComponentAccessor

def versionManager = ComponentAccessor.getVersionManager()
def project = issue.getProjectObject()
def versions = versionManager.getVersionsUnreleased(project.id, true)
.findAll{it.description.contains('automaticDefault')}

if (versions) {
issue.setFixVersions(versions)
log.info("${issue.key} - fix version/s has been updated with ${versions}")
}
else{
log.warn("Version does not available")
}
Ameer Syed March 1, 2023

Thank you so much Peter, This is for a Post function. I did tried your code as below, But, encountered an issue. 

Code:

import com.atlassian.jira.component.ComponentAccessor

def versionManager = ComponentAccessor.getVersionManager()

def project = issue.getProjectObject()

def tVer = issue.getKey() // Issue key is in the fixversion description


def versions = versionManager.getVersionsUnreleased(project.id, true)

        .findAll{it.description.contains(tVer)}

if (versions){
    issue.setFixVersions(versions)
    log.info("${issue.key} - fix version/s has been updated with ${versions}")
}

else{
    log.warn("Version does not available")
}



Error:
java.lang.NullPointerException: Cannot invoke method contains() on null object
at java_lang_String$contains.call(Unknown Source)
at Script10349$_run_closure1.doCall(Script10349.groovy:9)
at Script10349.run(Script10349.groovy:8)
PD Sheehan
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
March 1, 2023

Add some logging to figure out why it's failing:

import com.atlassian.jira.component.ComponentAccessor

def versionManager = ComponentAccessor.getVersionManager()
def project = issue.getProjectObject()
def tVer = issue.getKey() // Issue key is in the fixversion description

def allUnreleasedVersions = versionManager.getVersionsUnreleased(project.id, true)
log.info "Found ${allUnreleasedVersions.size()} unreleased versions: $allUnreleasedVersions"
log.info "Searching for unreleased version with description containing $tVer"
def versions = allUnreleasedVersions.findAll {
log.info "Version $it.name has description $it.description"
def isMatch = it.description.contains(tVer)
log.info " Version is match: $isMatch"
isMatch
}

if (versions) {
issue.setFixVersions(versions)
log.info("${issue.key} - fix version/s has been updated with ${versions}")
} else {
log.warn("No versions matching $tVer were found")
}
Like Ameer Syed likes this
Ameer Syed March 1, 2023

Thank you so much Peter, really appreciate your help. I observed a strange behaviour. Not sure if it has to do anything with the number of unreleased versions in the project. I tried the below code with 3-4 unreleased versions Test project and it worked. When i tried on my actual project, it failed again. Sharing the log file for your review. Note: Removed some versions data due to sensitivity. 

2023-03-01 15:01:05,315 INFO [runner.ScriptBindingsManager]: Found 497 unreleased versions: [2020-02 February, 2021-02 February, 2021-03 March, 2021-04 April, 2021-05 May, 2021-06 June,......all 497 releases including our version with matching description.

2023-03-01 15:01:05,316 INFO [runner.ScriptBindingsManager]: Searching for unreleased version with description containing RSDEV-109342
2023-03-01 15:01:05,316 INFO [runner.ScriptBindingsManager]: Version 2020-02 February has description
2023-03-01 15:01:05,316 INFO [runner.ScriptBindingsManager]: Version is match: false
2023-03-01 15:01:05,316 INFO [runner.ScriptBindingsManager]: Version 2021-02 February has description
2023-03-01 15:01:05,316 INFO [runner.ScriptBindingsManager]: Version is match: false
2023-03-01 15:01:05,316 INFO [runner.ScriptBindingsManager]: Version 2021-03 March has description
2023-03-01 15:01:05,316 INFO [runner.ScriptBindingsManager]: Version is match: false
2023-03-01 15:01:05,316 INFO [runner.ScriptBindingsManager]: Version 2021-04 April has description
2023-03-01 15:01:05,316 INFO [runner.ScriptBindingsManager]: Version is match: false
2023-03-01 15:01:05,316 INFO [runner.ScriptBindingsManager]: Version 2021-05 May has description
2023-03-01 15:01:05,316 INFO [runner.ScriptBindingsManager]: Version is match: false
2023-03-01 15:01:05,316 INFO [runner.ScriptBindingsManager]: Version 2021-06 June has description
2023-03-01 15:01:05,316 INFO [runner.ScriptBindingsManager]: Version is match: false
2023-03-01 15:01:05,316 INFO [runner.ScriptBindingsManager]: Version 2021-07 July has description
2023-03-01 15:01:05,316 INFO [runner.ScriptBindingsManager]: Version is match: false
2023-03-01 15:01:05,317 INFO [runner.ScriptBindingsManager]: Version 2021-08 August has description
2023-03-01 15:01:05,317 INFO [runner.ScriptBindingsManager]: Version is match: false
2023-03-01 15:01:05,317 INFO [runner.ScriptBindingsManager]: Version 2021-09 September has description
2023-03-01 15:01:05,317 INFO [runner.ScriptBindingsManager]: Version is match: false
2023-03-01 15:01:05,317 INFO [runner.ScriptBindingsManager]: Version 2021-10 October has description
2023-03-01 15:01:05,317 INFO [runner.ScriptBindingsManager]: Version is match: false
2023-03-01 15:01:05,317 INFO [runner.ScriptBindingsManager]: Version 2021-11 November has description
2023-03-01 15:01:05,317 INFO [runner.ScriptBindingsManager]: Version is match: false
2023-03-01 15:01:05,317 INFO [runner.ScriptBindingsManager]: Version 2021-12 December has description
2023-03-01 15:01:05,317 INFO [runner.ScriptBindingsManager]: Version is match: false
2023-03-01 15:01:05,317 INFO [runner.ScriptBindingsManager]: Version ALaN_July has description
2023-03-01 15:01:05,317 INFO [runner.ScriptBindingsManager]: Version is match: false
2023-03-01 15:01:05,317 INFO [runner.ScriptBindingsManager]: Version ALaN_August has description
2023-03-01 15:01:05,317 INFO [runner.ScriptBindingsManager]: Version is match: false
2023-03-01 15:01:05,317 INFO [runner.ScriptBindingsManager]: Version ALaN_Sep has description
2023-03-01 15:01:05,317 INFO [runner.ScriptBindingsManager]: Version is match: false
2023-03-01 15:01:05,317 INFO [runner.ScriptBindingsManager]: Version FWC has description
2023-03-01 15:01:05,317 INFO [runner.ScriptBindingsManager]: Version is match: false
2023-03-01 15:01:05,317 INFO [runner.ScriptBindingsManager]: Version Address Architectural and Technical Needs for 2020 has description null
2023-03-01 15:01:05,319 ERROR [workflow.AbstractScriptWorkflowFunction]: Workflow script has failed on issue RSDEV-109342 for user 'Ameer@ameer.com'. View here: https://jiratest/secure/admin/workflows/ViewWorkflowTransition.jspa?workflowMode=live&workflowName=RI+Workflow&descriptorTab=postfunctions&workflowTransition=101&highlight=2
java.lang.NullPointerException: Cannot invoke method contains() on null object
at java_lang_String$contains.call(Unknown Source)
at Script10640$_run_closure1.doCall(Script10640.groovy:12)
at Script10640.run(Script10640.groovy:10)

Ameer Syed March 1, 2023

Thank you so much Peter, really appreciate your help. 

I observed a strange behaviour. Not sure if it has to do anything with the number of unreleased versions in the project. I tried the below code with 3-4 unreleased versions Test project and it worked. When i tried on my actual project, it failed again. Sharing the log file for your review. Note: Removed some versions data due to sensitivity. 

2023-03-01 15:01:05,315 INFO [runner.ScriptBindingsManager]: Found 497 unreleased versions: [2020-02 February, 2021-02 February, 2021-03 March, 2021-04 April, 2021-05 May, 2021-06 June,......all 497 releases including our version with matching description.

2023-03-01 15:01:05,316 INFO [runner.ScriptBindingsManager]: Searching for unreleased version with description containing RSDEV-109342
2023-03-01 15:01:05,316 INFO [runner.ScriptBindingsManager]: Version 2020-02 February has description
2023-03-01 15:01:05,316 INFO [runner.ScriptBindingsManager]: Version is match: false
2023-03-01 15:01:05,316 INFO [runner.ScriptBindingsManager]: Version 2021-02 February has description
2023-03-01 15:01:05,316 INFO [runner.ScriptBindingsManager]: Version is match: false
2023-03-01 15:01:05,316 INFO [runner.ScriptBindingsManager]: Version 2021-03 March has description
2023-03-01 15:01:05,316 INFO [runner.ScriptBindingsManager]: Version is match: false
2023-03-01 15:01:05,316 INFO [runner.ScriptBindingsManager]: Version 2021-04 April has description
2023-03-01 15:01:05,316 INFO [runner.ScriptBindingsManager]: Version is match: false
2023-03-01 15:01:05,316 INFO [runner.ScriptBindingsManager]: Version 2021-05 May has description
2023-03-01 15:01:05,316 INFO [runner.ScriptBindingsManager]: Version is match: false
2023-03-01 15:01:05,316 INFO [runner.ScriptBindingsManager]: Version 2021-06 June has description
2023-03-01 15:01:05,316 INFO [runner.ScriptBindingsManager]: Version is match: false
2023-03-01 15:01:05,316 INFO [runner.ScriptBindingsManager]: Version 2021-07 July has description
2023-03-01 15:01:05,316 INFO [runner.ScriptBindingsManager]: Version is match: false
2023-03-01 15:01:05,317 INFO [runner.ScriptBindingsManager]: Version 2021-08 August has description
2023-03-01 15:01:05,317 INFO [runner.ScriptBindingsManager]: Version is match: false
2023-03-01 15:01:05,317 INFO [runner.ScriptBindingsManager]: Version 2021-09 September has description
2023-03-01 15:01:05,317 INFO [runner.ScriptBindingsManager]: Version is match: false
2023-03-01 15:01:05,317 INFO [runner.ScriptBindingsManager]: Version 2021-10 October has description
2023-03-01 15:01:05,317 INFO [runner.ScriptBindingsManager]: Version is match: false
2023-03-01 15:01:05,317 INFO [runner.ScriptBindingsManager]: Version 2021-11 November has description
2023-03-01 15:01:05,317 INFO [runner.ScriptBindingsManager]: Version is match: false
2023-03-01 15:01:05,317 INFO [runner.ScriptBindingsManager]: Version 2021-12 December has description
2023-03-01 15:01:05,317 INFO [runner.ScriptBindingsManager]: Version is match: false
2023-03-01 15:01:05,317 INFO [runner.ScriptBindingsManager]: Version ALaN_July has description
2023-03-01 15:01:05,317 INFO [runner.ScriptBindingsManager]: Version is match: false
2023-03-01 15:01:05,317 INFO [runner.ScriptBindingsManager]: Version ALaN_August has description
2023-03-01 15:01:05,317 INFO [runner.ScriptBindingsManager]: Version is match: false
2023-03-01 15:01:05,317 INFO [runner.ScriptBindingsManager]: Version ALaN_Sep has description
2023-03-01 15:01:05,317 INFO [runner.ScriptBindingsManager]: Version is match: false
2023-03-01 15:01:05,317 INFO [runner.ScriptBindingsManager]: Version FWC has description
2023-03-01 15:01:05,317 INFO [runner.ScriptBindingsManager]: Version is match: false
2023-03-01 15:01:05,317 INFO [runner.ScriptBindingsManager]: Version Address Architectural and Technical Needs for 2020 has description null
2023-03-01 15:01:05,319 ERROR [workflow.AbstractScriptWorkflowFunction]: Workflow script has failed on issue RSDEV-109342 for user 'Ameer@ameer.com'. View here: https://jiratest/secure/admin/workflows/ViewWorkflowTransition.jspa?workflowMode=live&workflowName=RI+Workflow&descriptorTab=postfunctions&workflowTransition=101&highlight=2
java.lang.NullPointerException: Cannot invoke method contains() on null object
at java_lang_String$contains.call(Unknown Source)
at Script10640$_run_closure1.doCall(Script10640.groovy:12)
at Script10640.run(Script10640.groovy:10)

Ameer Syed March 1, 2023

Thank you so much Peter, really appreciate your help. 

I observed a strange behaviour. Not sure if it has to do anything with the number of unreleased versions in the project. I tried the below code with 3-4 unreleased versions Test project and it worked. When i tried on my actual project, it failed again. Sharing the log file for your review. Note: Removed some versions data due to sensitivity. 

2023-03-01 15:01:05,315 INFO [runner.ScriptBindingsManager]: Found 497 unreleased versions: [2020-02 February, 2021-02 February, 2021-03 March, 2021-04 April, 2021-05 May, 2021-06 June,......all 497 releases including our version with matching description.

2023-03-01 15:01:05,316 INFO [runner.ScriptBindingsManager]: Searching for unreleased version with description containing RSDEV-109342
2023-03-01 15:01:05,316 INFO [runner.ScriptBindingsManager]: Version 2020-02 February has description
2023-03-01 15:01:05,316 INFO [runner.ScriptBindingsManager]: Version is match: false
2023-03-01 15:01:05,316 INFO [runner.ScriptBindingsManager]: Version 2021-02 February has description
2023-03-01 15:01:05,316 INFO [runner.ScriptBindingsManager]: Version is match: false
2023-03-01 15:01:05,316 INFO [runner.ScriptBindingsManager]: Version 2021-03 March has description
2023-03-01 15:01:05,316 INFO [runner.ScriptBindingsManager]: Version is match: false
2023-03-01 15:01:05,316 INFO [runner.ScriptBindingsManager]: Version 2021-04 April has description
2023-03-01 15:01:05,316 INFO [runner.ScriptBindingsManager]: Version is match: false
2023-03-01 15:01:05,316 INFO [runner.ScriptBindingsManager]: Version 2021-05 May has description
2023-03-01 15:01:05,316 INFO [runner.ScriptBindingsManager]: Version is match: false
2023-03-01 15:01:05,316 INFO [runner.ScriptBindingsManager]: Version 2021-06 June has description
2023-03-01 15:01:05,316 INFO [runner.ScriptBindingsManager]: Version is match: false
2023-03-01 15:01:05,316 INFO [runner.ScriptBindingsManager]: Version 2021-07 July has description
2023-03-01 15:01:05,316 INFO [runner.ScriptBindingsManager]: Version is match: false
2023-03-01 15:01:05,317 INFO [runner.ScriptBindingsManager]: Version 2021-08 August has description
2023-03-01 15:01:05,317 INFO [runner.ScriptBindingsManager]: Version is match: false
2023-03-01 15:01:05,317 INFO [runner.ScriptBindingsManager]: Version 2021-09 September has description
2023-03-01 15:01:05,317 INFO [runner.ScriptBindingsManager]: Version is match: false
2023-03-01 15:01:05,317 INFO [runner.ScriptBindingsManager]: Version 2021-10 October has description
2023-03-01 15:01:05,317 INFO [runner.ScriptBindingsManager]: Version is match: false
2023-03-01 15:01:05,317 INFO [runner.ScriptBindingsManager]: Version 2021-11 November has description
2023-03-01 15:01:05,317 INFO [runner.ScriptBindingsManager]: Version is match: false
2023-03-01 15:01:05,317 INFO [runner.ScriptBindingsManager]: Version 2021-12 December has description
2023-03-01 15:01:05,317 INFO [runner.ScriptBindingsManager]: Version is match: false
2023-03-01 15:01:05,317 INFO [runner.ScriptBindingsManager]: Version ALaN_July has description
2023-03-01 15:01:05,317 INFO [runner.ScriptBindingsManager]: Version is match: false
2023-03-01 15:01:05,317 INFO [runner.ScriptBindingsManager]: Version ALaN_August has description
2023-03-01 15:01:05,317 INFO [runner.ScriptBindingsManager]: Version is match: false
2023-03-01 15:01:05,317 INFO [runner.ScriptBindingsManager]: Version ALaN_Sep has description
2023-03-01 15:01:05,317 INFO [runner.ScriptBindingsManager]: Version is match: false
2023-03-01 15:01:05,317 INFO [runner.ScriptBindingsManager]: Version FWC has description
2023-03-01 15:01:05,317 INFO [runner.ScriptBindingsManager]: Version is match: false
2023-03-01 15:01:05,317 INFO [runner.ScriptBindingsManager]: Version Address Architectural and Technical Needs for 2020 has description null
2023-03-01 15:01:05,319 ERROR [workflow.AbstractScriptWorkflowFunction]: Workflow script has failed on issue RSDEV-109342 for user 'Ameer@ameer.com'. View here: https://jiratest/secure/admin/workflows/ViewWorkflowTransition.jspa?workflowMode=live&workflowName=RI+Workflow&descriptorTab=postfunctions&workflowTransition=101&highlight=2
java.lang.NullPointerException: Cannot invoke method contains() on null object
at java_lang_String$contains.call(Unknown Source)
at Script10640$_run_closure1.doCall(Script10640.groovy:12)
at Script10640.run(Script10640.groovy:10)

Ameer Syed March 2, 2023

Apologies for the inconvenience, Kindly ignore the multiple replies.

Ameer Syed March 2, 2023

Dear Peter, 

I tried your code with name as matching and it worked successfully. Please see the updated code below and let me know if anything should be corrected. 

 

import com.atlassian.jira.component.ComponentAccessor

def versionManager = ComponentAccessor.getVersionManager()

def project = issue.getProjectObject()

def tVer = issue.getKey() // Issue key is in the fixversion description

def allUnreleasedVersions = versionManager.getVersionsUnreleased(project.id, true)

//log.info "Found ${allUnreleasedVersions.size()} unreleased versions: $allUnreleasedVersions"

log.info "Searching for unreleased version with description containing $tVer"

def versions = allUnreleasedVersions.findAll {

    log.info "Version $it.name has description $it.description"

//    def isMatch = it.description.contains(tVer)

    def isMatch = it.name.contains(tVer)

    log.info "   Version is match: $isMatch"

    isMatch

}

if (versions) {

    issue.setFixVersions(versions)

    log.info("${issue.key} - fix version/s has been updated with ${versions}")

} else {

    log.warn("No versions matching $tVer were found")

}
PD Sheehan
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
March 2, 2023

Glad you figured it out.

Ameer Syed March 2, 2023

Thank you so much, appreciate all your help. 

0 votes
Ram Kumar Aravindakshan _Adaptavist_
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
February 28, 2023

Hi @Ameer Syed

I suggest upgrading your ScriptRunner plugin to the latest release, i.e. 7.11.0 and looking at the new HAPI feature.

Below is a working example code to update the Fixed versions field with only an unreleased version using the HAPI API.

import com.adaptavist.hapi.jira.projects.Projects

def versions = Projects.getByKey('MOCK').versions
def released = versions.findAll { it.released }
def unreleased = versions - released
issue.setFixVersions([unreleased.first()])

Please note that the sample working code above is not 100% exact to your environment. Hence, you will need to make the required modifications.

This example uses ScriptRunner's Custom Script Post-Function for the Done transition.

Below is a screenshot of the configuration for your reference:-

post_function_config.png

I hope this helps to solve your question. :-)

Thank you and Kind regards,

Ram

Reece Lander _ScriptRunner - The Adaptavist Group_
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
March 1, 2023

Imports are not required for HAPI classes

The versions can be obtained from the project the issue is located in

The following code finds all unreleased versions in the issue's project, it then appends them to the existing fix versions for the issue:

def unreleasedVersions = issue.projectObject.versions.findAll { version ->
!version.released
}

issue.set {
setFixVersions {
unreleasedVersions.each { version ->
add(version)
}
}
}

If you want to overwrite the existing fix versions on the issue entirely, you can use this code:

def unreleasedVersions = issue.projectObject.versions.findAll { version ->
!version.released
}

issue.setFixVersions(unreleasedVersions)

Cheers!

Reece

Reece Lander _ScriptRunner - The Adaptavist Group_
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
March 1, 2023

The above code will only work in a post function, if you have another use case please let me know, and I can provide additional code examples :)

Lipika Singh May 27, 2024

We are facing issues fix versions, sometimes old fix version is added to the ticket by accident.

It should not be possible to select a Fix Version which has Release date over 120 days in past.
example 
On 22nd May 2024 it should not be possible to add fix Version which has release date 16th January 2024

 

Lipika Singh May 27, 2024

Please help me with this script as well

 

Suggest an answer

Log in or Sign up to answer