From f41e031d8c7aaa4fd5b5a92ccd686b091ed1b035 Mon Sep 17 00:00:00 2001
From: Patrick Weyck
Date: Mon, 21 Sep 2020 10:04:36 +0200
Subject: [PATCH] NEXT-10676 - Fix jira query
---
.gitlab-ci/tools/src/Service/ChangelogService.php | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.gitlab-ci/tools/src/Service/ChangelogService.php b/.gitlab-ci/tools/src/Service/ChangelogService.php
index d1dfb70d9a..cf83793a48 100644
--- a/.gitlab-ci/tools/src/Service/ChangelogService.php
+++ b/.gitlab-ci/tools/src/Service/ChangelogService.php
@@ -83,7 +83,7 @@ public function fetchFixedIssues(string $version)
'Content-Type' => 'application/json',
],
'query' => [
- 'jql' => sprintf('project=\'NEXT\' AND status=Resolved AND resolution=fixed AND fixVersion=\'%s\' AND cf[10202]=Yes ORDER BY key ASC', $version),
+ 'jql' => sprintf('project=\'NEXT\' AND status=Resolved AND resolution=done AND fixVersion=\'%s\' AND cf[10202]=Yes ORDER BY key ASC', $version),
'fields' => 'id,key,customfield_11901,customfield_11900,customfield_12101,customfield_12100',
'maxResults' => 1000
],