Jira Migration Guide
Upgrading to 5.0.0
Atlassian is removing the GET /rest/api/3/workflow/search endpoint on June 1, 2026 (see Atlassian's CHANGE-2569). This version of the source-jira connector migrates the workflows stream to the replacement endpoint GET /rest/api/3/workflows/search, which returns a different response shape.
What changed
- The primary key of the
workflowsstream changed from[entityId, name]to[id]. - The replacement endpoint returns global and project workflows. The deprecated endpoint returned published classic workflows and didn't return next-gen workflows.
- Record-level field changes:
idis now a top-level UUID string (previously an object{ entityId, name }).nameis now a top-level string (previously nested insideid).- New fields:
isEditable,scope,taskId,version,loopedTransitionContainerLayout,startPointLayout. - Removed fields:
isDefault,hasDraftWorkflow,operations,projects,schemes. transitions[]items now uselinks,actions,conditions,validators,triggers,transitionScreen, andtoStatusReferenceinstead offrom,to,rules.postFunctions, andscreen.statuses[]items now includestatusReference,statusCategory, andlayoutin addition toidandname.createdandupdatedare now nullable and are no longer guaranteed to be ISO date-time formatted strings.
Who is affected
Users syncing the workflows stream. Users who do not sync this stream can upgrade without action.
Steps to migrate
- Select Connections in the main navbar, then select the affected connection(s).
- Select the Schema tab and click Refresh source schema, then OK.
- Select Save changes at the bottom of the page.
- Select the Status tab, click the three-dot menu on the Workflows stream, and press Clear data.
- Return to the Schema tab, re-enable the stream if needed, and select Sync now.
For more information on resetting your data in Airbyte, see this page.
If you have downstream models that depend on the previous shape of workflows records, update them to read the workflow identifier from id (string) instead of id.entityId, the workflow name from name (string) instead of id.name, and transition source/target references from transitions[].links[].fromStatusReference / toStatusReference instead of transitions[].from / to.
Upgrading to 4.0.0
This is a breaking change for users syncing the Pull Requests stream, which will no longer be supported moving forward. This version removes all code pertaining to this stream, as well as the enable_experimental_streams config option.
Users who do not have this stream enabled will not be affected and can safely upgrade to version 4.0.0. If you are syncing data from this stream, please:
- Select Connections in the main navbar, then select the connection(s) affected by the update.
- Select the Schema tab.
- Disable the
pull_requestsstream - In the main navbar, navigate to the Sources tab and select the affected Jira source. Set the
enable_experimental_streamsfield to false and save your changes.
If you're a self-managed user and can't upgrade to the new version yet, you can pin the connector to a specific version. Help managing upgrades.
Upgrading to 3.0.0
This is a breaking change for Workflows stream, which used Id field as pk.
This version introduces changing of pk from Id(type: object) to composite pk [entityId, name](type: string, string), as it makes stream compatible with destinations that do not support complex primary keys(e.g. BigQuery).
To gracefully handle these changes for your existing connections, we highly recommend resetting your data before resuming your data syncs with the new version. The Workflows stream can be manually reset in the following way:
- Select Connections in the main navbar.
- Select the connection(s) affected by the update.
- Select the Schema tab.
- Click Refresh source schema, then Ok.
- Select Save changes at the bottom of the page.
- Select the Status tab and click three dots on the right side of Workflows.
- Press the Clear data button.
- Return to the Schema tab.
- Check all your streams.
- Select Sync now to sync your data
For more information on resetting your data in Airbyte, see this page.
Upgrading to 2.0.0
We're continuously striving to enhance the quality and reliability of our connectors at Airbyte. As part of our commitment to delivering exceptional service, we are transitioning source-jira from the Python Connector Development Kit (CDK) to our innovative low-code framework. This is part of a strategic move to streamline many processes across connectors, bolstering maintainability and freeing us to focus more of our efforts on improving the performance and features of our evolving platform and growing catalog. However, due to differences between the Python and low-code CDKs, this migration constitutes a breaking change.
To gracefully handle these changes for your existing connections, we highly recommend resetting your data before resuming your data syncs with the new version. The Issues, Board Issues and Sprint Issues streams can be manually reset in the following way:
- Select Connections in the main navbar.
- Select the connection(s) affected by the update.
- Select the Schema tab.
- Uncheck all streams except the affected ones.
- Select Save changes at the bottom of the page.
- Select the Settings tab.
- Press the Clear your data button.
- Return to the Schema tab.
- Check all your streams.
- Select Sync now to sync your data
For more information on resetting your data in Airbyte, see this page.
Upgrading to 1.0.0
Note: this change is only breaking if you are using the Boards Issues stream in Incremental Sync mode.
This is a breaking change because Stream State for Boards Issues will be changed, so please follow the instructions below to migrate to version 1.0.0:
- Select Connections in the main navbar.
- Select the connection(s) affected by the update.
- Select the Replication tab.
- Select Refresh source schema.
noteAny detected schema changes will be listed for your review.
- Select OK.
- Select Save changes at the bottom of the page.
- Ensure the Reset affected streams option is checked.
noteDepending on destination type you may not be prompted to reset your data
- Select Save connection.
note
This will reset the data in your destination and initiate a fresh sync. :::
For more information on resetting your data in Airbyte, see this page.