Skip to content

Commit ae74c3f

Browse files
committed
[RELEASE] Add more contributors & only show names in release notes.
Author: Reynold Xin <[email protected]> Closes #8660 from rxin/contrib.
1 parent 2143d59 commit ae74c3f

File tree

2 files changed

+39
-8
lines changed

2 files changed

+39
-8
lines changed

dev/create-release/generate-contributors.py

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -178,13 +178,16 @@ def populate(issue_type, components):
178178
author_info[author][issue_type].add(component)
179179
# Find issues and components associated with this commit
180180
for issue in issues:
181-
jira_issue = jira_client.issue(issue)
182-
jira_type = jira_issue.fields.issuetype.name
183-
jira_type = translate_issue_type(jira_type, issue, warnings)
184-
jira_components = [translate_component(c.name, _hash, warnings)\
185-
for c in jira_issue.fields.components]
186-
all_components = set(jira_components + commit_components)
187-
populate(jira_type, all_components)
181+
try:
182+
jira_issue = jira_client.issue(issue)
183+
jira_type = jira_issue.fields.issuetype.name
184+
jira_type = translate_issue_type(jira_type, issue, warnings)
185+
jira_components = [translate_component(c.name, _hash, warnings)\
186+
for c in jira_issue.fields.components]
187+
all_components = set(jira_components + commit_components)
188+
populate(jira_type, all_components)
189+
except Exception as e:
190+
print "Unexpected error:", e
188191
# For docs without an associated JIRA, manually add it ourselves
189192
if is_docs(title) and not issues:
190193
populate("documentation", commit_components)
@@ -223,7 +226,8 @@ def populate(issue_type, components):
223226
# E.g. andrewor14/SPARK-3425/SPARK-1157/SPARK-6672
224227
if author in invalid_authors and invalid_authors[author]:
225228
author = author + "/" + "/".join(invalid_authors[author])
226-
line = " * %s -- %s" % (author, contribution)
229+
#line = " * %s -- %s" % (author, contribution)
230+
line = author
227231
contributors_file.write(line + "\n")
228232
contributors_file.close()
229233
print "Contributors list is successfully written to %s!" % contributors_file_name

dev/create-release/known_translations

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,3 +138,30 @@ lee19 - Lee
138138
lockwobr - Brian Lockwood
139139
navis - Navis Ryu
140140
pparkkin - Paavo Parkkinen
141+
HyukjinKwon - Hyukjin Kwon
142+
JDrit - Joseph Batchik
143+
JuhongPark - Juhong Park
144+
KaiXinXiaoLei - KaiXinXIaoLei
145+
NamelessAnalyst - NamelessAnalyst
146+
alyaxey - Alex Slusarenko
147+
baishuo - Shuo Bai
148+
fe2s - Oleksiy Dyagilev
149+
felixcheung - Felix Cheung
150+
feynmanliang - Feynman Liang
151+
josepablocam - Jose Cambronero
152+
kai-zeng - Kai Zeng
153+
mosessky - mosessky
154+
msannell - Michael Sannella
155+
nishkamravi2 - Nishkam Ravi
156+
noel-smith - Noel Smith
157+
petz2000 - Patrick Baier
158+
qiansl127 - Shilei Qian
159+
rahulpalamuttam - Rahul Palamuttam
160+
rowan000 - Rowan Chattaway
161+
sarutak - Kousuke Saruta
162+
sethah - Seth Hendrickson
163+
small-wang - Wang Wei
164+
stanzhai - Stan Zhai
165+
tien-dungle - Tien-Dung Le
166+
xuchenCN - Xu Chen
167+
zhangjiajin - Zhang JiaJin

0 commit comments

Comments
 (0)