Is your feature request related to a problem? Please describe.
On October 31, 2024, Atlassian announced the deprecation of four Jira Cloud search APIs. These APIs will be replaced with new, more efficient alternatives through our enhanced JQL service, which are currently available for use. You can read more about these new APIs here.
Effective May 1, 2025, Atlassian will remove the following Jira REST endpoints:
- GET
/rest/api/3/search
- POST
/rest/api/3/search
- POST
/rest/api/3/search/id
- POST
/rest/api/3/expression/eval
We have identified that this library may be used to access the deprecated endpoints in Jira Cloud. Failing to migrate to the new APIs before May 1, 2025, could negatively impact any solutions that depend on this library. By evolving our JQL service, we aim to provide a more reliable, performant, and scalable Jira experience tailored to meet the needs of enterprise customers.
If you have any questions or require further assistance, please do not hesitate to ask on our developer community forum
Describe the solution you'd like
|
def self.jql(client, jql, options = { fields: nil, start_at: nil, max_results: nil, expand: nil, |
should be updated to new url /rest/api/3/search/jql. Also, the functions exposes some options which are not available in new API. Example:
startAt which was replaced with nextPageToken
validate_query which is not available at all
Describe alternatives you've considered
N/A
Additional context
N/A
Is your feature request related to a problem? Please describe.
On October 31, 2024, Atlassian announced the deprecation of four Jira Cloud search APIs. These APIs will be replaced with new, more efficient alternatives through our enhanced JQL service, which are currently available for use. You can read more about these new APIs here.
Effective May 1, 2025, Atlassian will remove the following Jira REST endpoints:
/rest/api/3/search/rest/api/3/search/rest/api/3/search/id/rest/api/3/expression/evalWe have identified that this library may be used to access the deprecated endpoints in Jira Cloud. Failing to migrate to the new APIs before May 1, 2025, could negatively impact any solutions that depend on this library. By evolving our JQL service, we aim to provide a more reliable, performant, and scalable Jira experience tailored to meet the needs of enterprise customers.
If you have any questions or require further assistance, please do not hesitate to ask on our developer community forum
Describe the solution you'd like
jira-ruby/lib/jira/resource/issue.rb
Line 51 in afef22a
should be updated to new url
/rest/api/3/search/jql. Also, the functions exposes some options which are not available in new API. Example:startAtwhich was replaced withnextPageTokenvalidate_querywhich is not available at allDescribe alternatives you've considered
N/A
Additional context
N/A