Hi -- we are in the process of testing the Jira 8.0 upgrade on a staging environment and I've noticed that a few of the behaviour scripts no longer work. Initially they had a warning on the script to change getCustomFieldObjectByName to getCustomFieldObjectsByName -- once you do this other parts of the script break, see below. (The script doesn't work if you leave the warning in place either)
These are the imports on the script:
import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.issue.CustomFieldManager
import com.atlassian.jira.issue.customfields.manager.OptionsManager
1. getRelevantConfig(getIssueContext()) -- no longer works with the error message: cannot find matching method...please check if the declared type is correct and if the method exists.
2. ComponentAccessor.getOptionsManager().getOptions(customfield) -- no longer works with the error message: please check if the declared type is correct and if the method exists.
3. it.value -- no longer works with an error of no such property: value for class: java.lang.Object
4. it.optionId.toString() -- no longer works with an error of no such property: optionId for class: java.lang.Object
The behaviour script works on Jira 7.6.13
Figured it out -- The fix was to add .first()
customFieldObject.first().getRelevantConfig(getIssueContext())
Hello @BSte
Your own solution helped me too. I got the same issue and "first()" solved it.
Do you mind to share the final line to actually update the issue? I assume the syntax also changed since Jira 8.0.
Best
Kristian
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.