Something between the current version (1.19.2), and version 1.14.1, broke our ability to open issues via API. For reference, we're connecting to Jira Cloud. It appears that the code is sending "versions" as an empty array, even though we're not setting it at all in our code.
Here is the payload being transmitted when creating an issue for reference:
{
"fields":{
"summary":"Testing",
"issuetype":{
"name":"CSRequest"
},
"description":"Testing",
"priority":{
"name":"Medium"
},
"project":{
"key":"NSD"
},
"versions":[],
"customfield_10005":"NSD-229"
}
}
For now, we're going to roll back to the old version. But it appears that this is a bug. It should not be sending an empty value to the API.