feat: Migrate Jira client to Cloud API v3#191
Merged
Conversation
finxo
approved these changes
Mar 31, 2026
finxo
reviewed
Mar 31, 2026
Collaborator
finxo
left a comment
There was a problem hiding this comment.
plugins/titan-plugin-jira/titan_plugin_jira/workflows/analyze-jira-issues.yaml (line 14):
The workflow advertises query_name as an overridable top-level param, but this step still hardcodes query_name: "open_issues", so any caller-supplied value is ignored. Evidence:
params:
query_name: "open_issues"
...
steps:
- id: search_open_issues
params:
query_name: "open_issues"Please wire the step to the workflow param instead of hardcoding the value, otherwise the documented override does not work.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Pull Request
📝 Summary
This pull request migrates the Jira network client from using the deprecated v2 API to the current Jira Cloud REST API v3. This change is necessary to maintain compatibility with modern Jira Cloud instances. The update includes switching to Basic Authentication and adjusting API endpoints.
🔧 Changes Made
email:api_token), as required by the Jira Cloud API.JiraNetworkfrom/rest/api/2to/rest/api/3.IssueServicefromsearchtosearch/jqlto align with API v3 standards.JiraNetworkto validate the newBasicauthentication header format.🧪 Testing
poetry run pytest)make test)titan-devThe unit test
test_network_builds_correct_auth_headerwas updated to verify that theAuthorizationheader is correctly formatted for Basic Auth using a base64-encoded email and API token.📊 Logs
✅ Checklist