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.
--
if ( 1 ) { $postman->ring() for (1..2); }

In reply to JIRA-Client-Automated stopped working for me, Atlassian modified the API's. The requested API for searching issues has been removed. by gargle

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.