You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@storm.apache.org by da...@apache.org on 2015/02/09 17:18:38 UTC

[1/3] storm git commit: STORM-601: Make jira-github-join ignore case.

Repository: storm
Updated Branches:
  refs/heads/master 2b39a39cb -> b920bae36


STORM-601: Make jira-github-join ignore case.


Project: http://git-wip-us.apache.org/repos/asf/storm/repo
Commit: http://git-wip-us.apache.org/repos/asf/storm/commit/3ad05ca3
Tree: http://git-wip-us.apache.org/repos/asf/storm/tree/3ad05ca3
Diff: http://git-wip-us.apache.org/repos/asf/storm/diff/3ad05ca3

Branch: refs/heads/master
Commit: 3ad05ca3565f0d33693e7bff6a5af6fd20afce46
Parents: da02d8c
Author: Robert (Bobby) Evans <ev...@yahoo-inc.com>
Authored: Tue Dec 23 09:29:36 2014 -0600
Committer: Robert (Bobby) Evans <ev...@yahoo-inc.com>
Committed: Tue Dec 23 09:29:36 2014 -0600

----------------------------------------------------------------------
 dev-tools/jira-github-join.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/storm/blob/3ad05ca3/dev-tools/jira-github-join.py
----------------------------------------------------------------------
diff --git a/dev-tools/jira-github-join.py b/dev-tools/jira-github-join.py
index fa82613..d2526e6 100755
--- a/dev-tools/jira-github-join.py
+++ b/dev-tools/jira-github-join.py
@@ -32,7 +32,7 @@ def main():
 	github = GitHub(options)
 	
 	openPullRequests = github.openPulls("apache","storm")
-	stormJiraNumber = re.compile("STORM-[0-9]+")
+	stormJiraNumber = re.compile("STORM-[0-9]+", re.I)
 	openJiras = jrepo.openJiras("STORM")
 	
 	jira2Pulls = {}
@@ -42,7 +42,7 @@ def main():
 	for pull in openPullRequests:
 		found = stormJiraNumber.search(pull.title())
 		if found:
-			jiraNum = found.group(0)
+			jiraNum = found.group(0).upper()
 			if not (jiraNum in openJiras):
 				pullWithBadJira.append(pull)
 			else:


[3/3] storm git commit: Update CHANGELOG for STORM-601

Posted by da...@apache.org.
Update CHANGELOG for STORM-601


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

Branch: refs/heads/master
Commit: b920bae3643dd16d348da1150fb5531465f87bc5
Parents: 79d819a
Author: Derek Dagit <de...@yahoo-inc.com>
Authored: Mon Feb 9 10:16:00 2015 -0600
Committer: Derek Dagit <de...@yahoo-inc.com>
Committed: Mon Feb 9 10:16:00 2015 -0600

----------------------------------------------------------------------
 CHANGELOG.md | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/storm/blob/b920bae3/CHANGELOG.md
----------------------------------------------------------------------
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 59103f0..997927e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -43,6 +43,7 @@
  * STORM-636: Faster, optional retrieval of last component error
  * STORM-608: Storm UI CSRF escape characters not work correctly.
  * STORM-626: Add script to print out the merge command for a given pull request.
+ * STORM-601: Make jira-github-join ignore case.
 
 ## 0.9.3-rc2
  * STORM-558: change "swap!" to "reset!" to fix assignment-versions in supervisor


[2/3] storm git commit: Merge branch 'STORM-601' of https://github.com/revans2/incubator-storm

Posted by da...@apache.org.
Merge branch 'STORM-601' of https://github.com/revans2/incubator-storm


Project: http://git-wip-us.apache.org/repos/asf/storm/repo
Commit: http://git-wip-us.apache.org/repos/asf/storm/commit/79d819a1
Tree: http://git-wip-us.apache.org/repos/asf/storm/tree/79d819a1
Diff: http://git-wip-us.apache.org/repos/asf/storm/diff/79d819a1

Branch: refs/heads/master
Commit: 79d819a10bfea01b31fed70a16cbf3ccbe546f46
Parents: 2b39a39 3ad05ca
Author: Derek Dagit <de...@yahoo-inc.com>
Authored: Mon Feb 9 10:14:53 2015 -0600
Committer: Derek Dagit <de...@yahoo-inc.com>
Committed: Mon Feb 9 10:14:53 2015 -0600

----------------------------------------------------------------------
 dev-tools/jira-github-join.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------