Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
curl -s https://issues.apache.org/jira//rest/api/2/search?jql=project%20%3D%20FLINK%20AND%20%22Release%20Note%22%20is%20not%20EMPTY%20and%20fixVersion%20%3D%201.11.0 | jq '.issues[]|.key,.fields.summary,.fields.customfield_12310192' | paste - - -

Were last parameter passed in curl in jql is fixVersion%20%3D%201.11.0  defines tickets for which fix version will be searched for (in this case it is 1.11.0) .  

...