Compatibility with Jira

This page details ScriptRunner compatibility with major Jira versions. We recommend you check this page if you plan on upgrading your Jira instance. 

Jira 9

Compatibility with Jira 9

Only those versions marked as compatible in the Atlassian Marketplace will work with Jira 9.

Some of your scripts may fail if you upgrade without modifications.

If you have been through the Jira 7 → 8 upgrade you have little to fear in upgrading to Jira 9.

You may not need to make any changes to your own scripts. The major areas of change are listed below.

For further reference, see Atlassian's Preparing for Jira 9 documentation. The information here is focused on the areas of change likely to affect script writers.

Filter for scripts needing your attention in the Script Registry to quickly review all your code.

Upgrades and staging Environments

If you do not have a staging environment you should invest the time it takes to create one. You should be able to reliably clone your production instance to the staging environment, so you can test plugins and upgrades.

A good strategy to follow is to:

  1. Make changes to remove all deprecated code while you are using Jira 8. If you remove deprecated code then your code has the best chance of working unchanged with Jira 9.

    Deprecated code is shown as a warning.

  2. Upgrade your staging instance to Jira 9.

  3. Use the script registry to make sure you don’t have any type checking errors, and Test.

  4. Record changes, if needed.

  5. When upgrading your production instance using inline scripts some changes are necessary. For files, you can update your Scripts Directory, e.g. by merging from a branch.

Changes to Jira Java API

There are some noticeable changes to the Jira Java API, as listed below:

Removed in Jira 9Jira 9 Alternative
com.atlassian.jira.util.JiraUtils.loadComponent(*)ComponentManager.getInstance().loadComponent(Class, Collection)
com.atlassian.jira.user.util.UserUtil.getUserByName(String)ComponentAccessor.userManager.getUserByName(String)
com.atlassian.jira.user.util.UserUtil.getUserByName(String)ComponentAccessor.userManager.getUserByKey(String)
com.atlassian.jira.user.util.UserUtil.getUser(String)ComponentAccessor.UserManager.userByName(String)
com.atlassian.jira.user.util.UserUtil.getGroupObject(String)ComponentAccessor.groupManager.getGroup(String)
com.atlassian.jira.config.constantsManager.getStatusObjects()ComponentAccessor.constantsManager.getStatuses()
com.atlassian.jira.config.constantsManager.getResolutionObjects()ComponentAccessor.constantsManager.getResolutions()
com.atlassian.jira.config.constantsManager.getPriorityObjects()ComponentAccessor.constantsManager.getPriorities()
com.atlassian.jira.config.constantsManager.getIssueTypeObject(String)ComponentAccessor.constantsManager.getIssueType(String)

Anything else?

Did we miss something important that script authors should take into account when upgrading? Please let us know.

If it’s likely to affect more than a couple of users we will add it to this documentation.

Jira 8

Compatibility with Jira 8

Only those versions marked as compatible in the Atlassian Marketplace will work with Jira 8.

Some of your scripts may fail if you upgrade without modifications.

If you have been through the Jira 6 → 7 upgrade you have little to fear in upgrading to Jira 8

You may well not need to make any changes to your own scripts. There is a guide to the major areas of change below.

For further reference you can use view Preparing for Jira 8. The information here is focused on the areas of change likely to affect script writers.

Use the Script Registry to quickly review all your code.

Upgrades and staging Environments

If you do not have a staging environment you should invest the time it takes to create one. You should be able to reliably clone your production instance to the staging environment, so you can test plugins and upgrades.

A good strategy to follow is to

  • make changes now to remove all deprecated code, while you are using Jira 7. Deprecations are shown with a yellow warning. If you do that your code has the best chance of working unchanged with Jira 8.

    A warning in the Additional Issue Actions section.
  • once the deprecated code has been fixed, upgrade your staging instance to Jira 8

  • use the script registry to make sure you don’t have any type checking errors, and test

  • if you need to make changes, record what they are

  • when you upgrade your production instance, if you are using inline scripts, you will need to make the same changes. For files, you can update your scripts directory, e.g. by merging from a branch

Changes to Search API

There are some methods renamed in the search API.

The one most likely to have impact is that com.atlassian.jira.issue.search.SearchResults#getIssues has been renamed to getResults.

Example - you have a simple script that executes a JQL query, and does something with the first page of issues returned.

groovy
import com.atlassian.jira.bc.issue.search.SearchService import com.atlassian.jira.component.ComponentAccessor import com.atlassian.jira.jql.parser.JqlQueryParser import com.atlassian.jira.web.bean.PagerFilter def searchService = ComponentAccessor.getComponent(SearchService) def user = ComponentAccessor.getJiraAuthenticationContext().getLoggedInUser() def queryParser = ComponentAccessor.getComponent(JqlQueryParser) def query = queryParser.parseQuery("project = JRA and resolution is empty") def search = searchService.search(user, query, new PagerFilter()) search.issues.each { // do something with each issue }

In Jira 8, the last part should be rewritten:

groovy
search.results.each { // do something with each issue }
That is: issues has been changed to results.

ComponentManager has been moved

You should have stopped using ComponentManager when upgrading from Jira 6 → 7, but if you didn’t your scripts would continue to work, albeit you would see a deprecation warning in the script editor.

If using componentManager provided as a variable to your script, you don’t need to make any changes.

If you haven’t already done this, follow the step of migrating to ComponentAccessor which should have been done when upgrading to Jira 7.

If you insist on using ComponentManager replace any imports:

groovy
import com.atlassian.jira.ComponentManager

with

groovy
import com.atlassian.jira.component.pico.ComponentManager

Anything else?

Did we miss something important that script authors should take into account when upgrading? Please let us know.

If it’s likely to affect more than a couple of users we will add it to this documentation.

Jira 7

Compatibility with Jira 7

ScriptRunner releases 4.2.x and above are compatible with Jira 7, not below.

Your scripts will fail if you upgrade without modifications.

You will need to make some changes to your scripts to make them work with Jira 7’s API. There is a guide to the major areas of change below.

Use this guide in conjunction with Preparing for Jira 7, and specifically the API changes. This guide is focused on the areas of change likely to affect script writers.

Use the script registry to quickly review all your code.

Upgrades and staging Environments

If you do not have a staging environment you should invest the time it takes to create one. You should be able to reliably clone your production instance to the staging environment, so you can test plugins and upgrades.

A good strategy to follow is to

  • make changes now to remove all deprecated code, while you are using Jira 6.3 or 6.4. Deprecations are shown with a yellow warning. If you do that your code has the best chance of working unchanged with Jira 7.

    A warning in the Additional Issue Actions section.
  • once the deprecated code has been fixed, upgrade your staging instance to Jira 7

  • use the script registry to make sure you don’t have any type checking errors, and test

  • if you need to make changes, record what they are

  • when you upgrade your production instance, if you are using inline scripts, you will need to make the same changes. For files, you can update your scripts directory, e.g. by merging from a branch

Removal of ComponentManager methods

ComponentManager methods have been removed. Typically these have been used to get at Jira managers and services, even though they have been deprecated for several years.

Where previously you used any of these constructs:

groovy
import com.atlassian.jira.ComponentManager import com.atlassian.jira.bc.project.ProjectService def commentManager = ComponentManager.instance.commentManager // or def commentManager = ComponentManager.getInstance().getCommentManager() // or def commentManager = ComponentManager.getCommentManager() // getting some other type of service def projectService = ComponentManager.getInstance().getComponentInstanceOfType(ProjectService)

now you should use:

groovy
import com.atlassian.jira.component.ComponentAccessor import com.atlassian.jira.bc.project.ProjectService def commentManager = ComponentAccessor.commentManager def projectService = ComponentAccessor.getComponent(ProjectService)

User replaced with ApplicationUser

Most methods that took or return a User have been replaced with a ApplicationUser.

You will notice this if you have statically typed a User, example:

A Static Type Checking error in the Script field.

In this case the solution is to use dynamic typing (and remove the redundant import):

groovy
import com.atlassian.jira.component.ComponentAccessor def authContext = ComponentAccessor.jiraAuthenticationContext def user = authContext.getLoggedInUser()

The method that you pass the user object to will also have been changed to use an ApplicationUser. In future, refrain from static typing objects (except for fields).

GenericValues removed

All methods that returned a GenericValue have been removed.

Previously, issue.priority would have returned a GenericValue, and you should have been using issue.priorityObject.

In Jira 7, issue.priority returns a Priority object, and getPriorityObject() has been deprecated.

So if you have done nothing since Jira 4, your code may now be perfectly correct. If you have have attempted to keep up with the deprecations, you should now revert back to getPriority().

An exception would be if you were expecting a GenericValue, eg:

groovy
issue.priority.get("name") == "High"

This will no longer work, you should change it to:

groovy
issue.priority.name == "High"

Issue interface

Some methods on com.atlassian.jira.issue.MutableIssue have been renamed. Previously, setComponents used GenericValues. However, the API was changed to use component objects instead. GenericValues were subsequently removed, so specifying "Objects" in the method name was no longer necessary.

setComponents(Collection<org.ofbiz.core.entity.GenericValue> components) has been removed, and setComponentObjects(Collection<ProjectComponent> components) has been renamed to setComponent.

Create Project

The validateCreateProject where you specify all the parameters has been replaced by:

groovy
ProjectService.CreateProjectValidationResult validateCreateProject(ApplicationUser user, @Nonnull ProjectCreationData data)
On this page