Not really a question, but more like a warning for other users of JIRA-Client-Automated. If this notification doesn't belong here, then please let me know. It's been too long ago since I last visited perlmonks.org, sorry!
I'm using all_search_results in JIRA-Client-Automated to filter out all issues that are assigned to me. The code is here below. The call doesn't work anymore.
I already logged bug https://rt.cpan.org/Public/Bug/Display.html?id=170062
my @open_issues = $jira->all_search_results( "(((assignee = " . $accountId . " or assignee = 557058:03251bcc-c6a3-4137-a7f0-d5c63be68d1d9 +)" . " and project != \"ST - Dev Support\")" . " or ((assignee is empty or assignee =" . " 557058:03251bcc-c6a3-4137-a7f0-d5c63be68d1d9 or assignee = + " . $accountId . ") AND project = \"ST - Dev Support\")) AND status != Done" . " and status != Cancelled order by created DESC");
This is the error I am getting:
Unable to POST /rest/api/latest/search/: 410 Gone{ errorMessages => [ "The requested API has been removed. Please migrate to the /rest/a +pi/3/search/jql API. A full migration guideline is available at https +://developer.atlassian.com/changelog/#CHANGE-2046", ], errors => {}, } for request: { fields => ["*navigable"], jql => "(((assignee = 557058:488e7764-b837-4c11-974d-ec9115f47e26 or + assignee = 557058:03251bcc-c6a3-4137-a7f0-d5c63be68d1d9) and project + != \"ST - Dev Support\") or ((assignee is empty or assignee = 557058 +:03251bcc-c6a3-4137-a7f0-d5c63be68d1d9 or assignee = 557058:488e7764- +b837-4c11-974d-ec9115f47e26) AND project = \"ST - Dev Support\")) AND + status != Done and status != Cancelled order by created DESC", maxResults => 100, startAt => 0, } at ./checkJiraIssues.pl line 57.
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: JIRA-Client-Automated stopped working for me, Atlassian modified the API's. The requested API for searching issues has been removed.
by Corion (Patriarch) on Sep 18, 2025 at 07:27 UTC | |
Re: JIRA-Client-Automated stopped working for me, Atlassian modified the API's. The requested API for searching issues has been removed.
by gargle (Chaplain) on Sep 18, 2025 at 08:20 UTC | |
Re: JIRA-Client-Automated stopped working for me, Atlassian modified the API's. The requested API for searching issues has been removed.
by kcott (Archbishop) on Sep 18, 2025 at 07:18 UTC | |
by gargle (Chaplain) on Sep 18, 2025 at 08:14 UTC |