Versions Compared
Key
- This line was added.
- This line was removed.
- Formatting was changed.
Migration method
If a tool such as the Jira Cloud Migration Assistant (JCMA) or the Configuration Manager for Jira (CMJ) is used to migrate from Data Center to Jira Cloud we can assume a number of things that will make the migration more successful:
Project and issue type names will be identical between DC and cloud - this will ensure that project keys or issue types names used directly in scripts will continue to operate after migration
Custom field names will be identical - Custom field id’s will definitely not be identical. However, if SIL aliases were used (a best practice) then by updating the SIL aliases settings in cloud the scripts will automatically work with the new id’s. If custom field aliases were not used then this migration is a good opportunity to convert to using them.
Status and transition names (etc.) will be identical - this will ensure that any scripts using status names, transition names or id’s should continue to operate after the migration
Info |
---|
If JCMA or CMJ is not used in the migration scripts can still be migrated by uploading them to the SIL manager or using the Self Help menu and then by configuring them manually. |
Post migration testing
If a script passes the syntax check from the SIL Manager it means the following:
The functions used in the code are compatible between DC and cloud
The syntax of the script it correct
Custom field id’s are correct or have been updated in the alias file
What it does not mean:
That the script will operate exactly the same between DC and cloud
Info |
---|
The reason that the scripts may not operated exactly the same between DC and cloud has to do with the information that may be contained in the script. Project names, issue type names, JQL queries, (etc.) may have to all be adjusted in order to guarantee the script will operate as expected. Using a migration tool will increase the likelihood of success. |
Note |
---|
We recommend that scripts will need to be tested post migration for the reasons mentioned above. |
Which scripts will migrate from DC to Cloud
Expand | ||||||
---|---|---|---|---|---|---|
|
Scripts that will need changes when migrating
Conditions and validator scripts
Conditions and validators are written using a language/syntax called Jira Expressions in the cloud. All truly scripted conditions and validators are not supported in Cloud at this time. Many people find using Jira Expressions to be difficult and time consuming. Like other features in Cloud, the solution may be to look at the problem in a slightly different way and to tweak the solution. See this article for a solution to continue using SIL scripted conditions and validators in Jira Cloud.
Expand | ||
---|---|---|
| ||
|
Expand | ||||
---|---|---|---|---|
| ||||
|
Live Fields scripts
In Data Center, Live Fields is a just collection of functions within Power Scripts that are used to manipulate issue screens and the UI. In Jira Cloud, Live Fields was built as separate app for architectural reasons. This new Live Fields app does not use the SIL language, instead it uses JavaScript or TypeScript. When writing scripts for Live Fields for Jira Cloud an API written by Atlassian must be used. For this reason all Live Fields scripts will need to be converted from SIL to JavaScript.
For example:
Code Block |
---|
//SIL (Data Center)
lfSet("summary", "Value to set");
//JavaScript (Cloud)
getFieldById("summary").setValue("Value to set"); |
Mail handler scripts
It is important to note that the incoming email service that is available in Power Scripts for Jira Cloud is different from Data Center in that it does not intercept emails coming in on the main “…@atlassian.net” email address. This is because it is currently not possible to intercept those emails as Atlassian has not made it possible to do so. In Jira Cloud, email scripts can only intercept emails going to a separate email account like a Gmail account for example.
It is due to this difference above that different functions were needed between Data Center and Cloud for incoming email scripts. These scripts will need to be modified to use the new functions.
Expand | ||
---|---|---|
| ||
|
Expand | ||
---|---|---|
| ||
|
Scripted JQL functions/keywords
With scripted JQL functions/keywords there is a large paradigm shift between Data Center and cloud that has to do with Jira directly and is not caused by Power Scripts.
In Data Center, scripted functions are executed when the search is executed. The SIL script performs its own, separate JQL search for each issue with the script determining if the issue should be included in the search results as each issue is evaluated one-by-one
In Cloud, scripted functions are executed in advanced of the search and the result of the script is stored with the issue. The JQL search uses these precalculated results to determine if the issue should be returned with the search results.
This will change the construction of the script JQL function/keyword in the following ways:
Scripts will not contain their own JQL search in the script
The return statement of the cloud scripts uses additional operations when compared to DC
JQL scripts in cloud can update the search values of parent and child issues as well as their own
For these reasons script JQL functions/keywords will need to be updated to use the new methods in cloud.
Script Migration Process/Strategy
Include Page | ||||
---|---|---|---|---|
|
Useful scripts, tips and tricks
Include Page | ||||
---|---|---|---|---|
|
Table of contents:
Table of Contents | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
|