| With JENKINS-56987 (Pull Request https://github.com/jenkinsci/jira-plugin/pull/213 ) one line in
hudson.plugins.jira.JiraRestService.createIssue(String, String, String, Iterable<String>, String, Long, Long)
needed to use a workaround to set "accountId" instead of "name". When the GDPR changes are fully merged in jira-rest-java-client (probably version 5.2.2) https://bitbucket.org/atlassian/jira-rest-java-client/pull-requests/104/change-field-name-from-name-to-accountid the workaround can be changed back to
builder.setAssigneeName(assignee)
(or builder.setAssigneeAccountId(assignee) depending on the provided solution) |