You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@aurora.apache.org by jf...@apache.org on 2014/05/07 06:38:31 UTC

git commit: AURORA-388 - Update changelog to only pickup fixed issues

Repository: incubator-aurora
Updated Branches:
  refs/heads/master 0d4b1a10a -> ed9cbb938


AURORA-388 - Update changelog to only pickup fixed issues

Updates the changelog jql to only pick up fixed and done issues.

Testing Done:
Removed CHANGELOG file and switched .auroraversion to 0.5.0 and re-ran script, came back with 160 issues vs the 183 currently listed.

Bugs closed: AURORA-388

Reviewed at https://reviews.apache.org/r/21111/


Project: http://git-wip-us.apache.org/repos/asf/incubator-aurora/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-aurora/commit/ed9cbb93
Tree: http://git-wip-us.apache.org/repos/asf/incubator-aurora/tree/ed9cbb93
Diff: http://git-wip-us.apache.org/repos/asf/incubator-aurora/diff/ed9cbb93

Branch: refs/heads/master
Commit: ed9cbb9388b54dd2a043113fdccc3e26d72f562a
Parents: 0d4b1a1
Author: Jake Farrell <jf...@apache.org>
Authored: Wed May 7 00:25:58 2014 -0400
Committer: jfarrell <jf...@apache.org>
Committed: Wed May 7 00:25:58 2014 -0400

----------------------------------------------------------------------
 build-support/release/changelog | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-aurora/blob/ed9cbb93/build-support/release/changelog
----------------------------------------------------------------------
diff --git a/build-support/release/changelog b/build-support/release/changelog
index 6bd8ee9..4554737 100755
--- a/build-support/release/changelog
+++ b/build-support/release/changelog
@@ -109,7 +109,11 @@ jira_base_url = "https://issues.apache.org/jira"
 jira_search_url = "/rest/api/2/search"
 jira_url = jira_base_url + jira_search_url
 
-jql="project=AURORA AND fixVersion='#{version}' AND status in (Resolved,Closed) ORDER BY issuetype"
+jql="project=AURORA " \
+    "AND fixVersion='#{version}' " \
+    "AND status in (Resolved,Closed) " \
+    "AND resolution in (Fixed, Done) " \
+    "ORDER BY issuetype DESC"
 
 # Fetch all the issues available for the given jql query
 results = get_all_jira_issues_for_query(jira_url, jql)