Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion actions/lib/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def __init__(self, config):
def _get_client(self):
config = self.config

options = {'server': config['url'], 'verify': config['verify']}
options = {'server': config['url'], 'verify': config['verify'], "rest_api_version": "3"}

auth_method = config['auth_method']

Expand Down
3 changes: 1 addition & 2 deletions actions/search_issues.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,7 @@ def run(self, query, start_at=0, max_results=50,
include_comments=False, include_attachments=False,
include_customfields=False, include_components=False,
include_subtasks=False):
issues = self._client.search_issues(query, startAt=start_at,
maxResults=max_results)
issues = self._client.enhanced_search_issues(query, startAt=start_at, maxResults=max_results)
results = []

for issue in issues:
Expand Down
2 changes: 1 addition & 1 deletion pack.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ keywords:
- issues
- ticket management
- project management
version: 3.2.1
version: 3.2.1-algolia.1
python_versions:
- "3"
author: StackStorm, Inc.
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
jira==3.8.0
jira==3.10.5
pyjwt==2.4.0
Loading