forked from NVIDIA/spark-rapids
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgenerate-changelog
executable file
·339 lines (291 loc) · 10.8 KB
/
generate-changelog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
#!/usr/bin/env python
# Copyright (c) 2020-2022, NVIDIA CORPORATION.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""A simple changelog generator
This tool takes list of release versions to generate `CHANGELOG.md`.
The changelog will include all merged PRs w/o `[bot]` postfix,
and issues that include the labels `bug`, `feature request`, `SQL`, `performance`, `shuffle`,
minus any issues with the labels `wontfix`, `invalid` or `duplicate`.
For each project there should be an issue subsection for,
Features: all issues with label `feature request` + `SQL`
Performance: all issues with label `performance` + `shuffle`
Bugs fixed: all issues with label `bug`
To deduplicate section, the priority should be `Bugs fixed > Performance > Features`
NOTE: This is a repo-specific script, so you may not use it in other places.
Release version from arguments will be used to map project name and branch name.
Mapping Pattern:
release -> project: Release {release}, branch: branch-{release}
e.g.
0.1 -> project: Release 0.1, branch: branch-0.1
0.2 -> project: Release 0.2, branch: branch-0.2
Dependencies:
- requests
Github personal access token: https://github.com/settings/tokens, and make you have `repo` scope selected
Usage:
cd spark-rapids/
# generate changelog for releases 21.06 to 22.06
scripts/generate-changelog --token=<GITHUB_PERSONAL_ACCESS_TOKEN> \
--releases=21.06,21.06.1,21.06.2,21.08,21.08.1,21.10,21.12,22.02,22.04,22.06
# generate changelog for releases 21.06 to 22.06 to /tmp/CHANGELOG.md
GITHUB_TOKEN=<GITHUB_PERSONAL_ACCESS_TOKEN> scripts/generate-changelog \
--releases=21.06,21.06.1,21.06.2,21.08,21.08.1,21.10,21.12,22.02,22.04,22.06 \
--path=/tmp/CHANGELOG.md
"""
import os
import sys
from argparse import ArgumentParser
from collections import OrderedDict
from datetime import date
import requests
# Constants
RELEASE = "Release"
PULL_REQUESTS = "pullRequests"
ISSUES = "issues"
# Subtitles
INVALID = 'Invalid'
BUGS_FIXED = 'Bugs Fixed'
PERFORMANCE = 'Performance'
FEATURES = 'Features'
PRS = 'PRs'
# Labels
LABEL_WONTFIX, LABEL_INVALID, LABEL_DUPLICATE = 'wontfix', 'invalid', 'duplicate'
LABEL_BUG = 'bug'
LABEL_PERFORMANCE, LABEL_SHUFFLE = 'performance', 'shuffle'
LABEL_FEATURE, LABEL_SQL = 'feature request', 'SQL'
# Queries
query_pr = """
query ($baseRefName: String!, $after: String) {
repository(name: "spark-rapids", owner: "NVIDIA") {
pullRequests(states: [MERGED], baseRefName: $baseRefName, first: 100, after: $after) {
totalCount
nodes {
number
title
headRefName
baseRefName
state
url
labels(first: 10) {
nodes {
name
}
}
projectCards(first: 10) {
nodes {
project {
name
}
column {
name
}
}
}
mergedAt
}
pageInfo {
hasNextPage
endCursor
}
}
}
}
"""
query_issue = """
query ($after: String) {
repository(name: "spark-rapids", owner: "NVIDIA") {
issues(states: [CLOSED], labels: ["SQL", "feature request", "performance", "bug", "shuffle"], first: 100, after: $after) {
totalCount
nodes {
number
title
state
url
labels(first: 10) {
nodes {
name
}
}
projectCards(first: 10) {
nodes {
project {
name
}
column {
name
}
}
}
closedAt
}
pageInfo {
hasNextPage
endCursor
}
}
}
}
"""
def process_changelog(resource_type: str, changelog: dict, releases: set, projects: set, no_project_prs: list,
token: str):
if resource_type == PULL_REQUESTS:
items = process_pr(releases=releases, token=token)
time_field = 'mergedAt'
elif resource_type == ISSUES:
items = process_issue(token=token)
time_field = 'closedAt'
else:
print(f"[process_changelog] Invalid type: {resource_type}")
sys.exit(1)
for item in items:
if len(item['projectCards']['nodes']) == 0:
if resource_type == PULL_REQUESTS:
if '[bot]' in item['title']: # skip auto-gen PR, created by our github actions workflows
continue
no_project_prs.append(item)
continue
project = item['projectCards']['nodes'][0]['project']['name']
if not release_project(project, projects):
continue
if project not in changelog:
changelog[project] = {
FEATURES: [],
PERFORMANCE: [],
BUGS_FIXED: [],
PRS: [],
}
labels = set()
for label in item['labels']['nodes']:
labels.add(label['name'])
category = rules(labels)
if resource_type == ISSUES and category == INVALID:
continue
if resource_type == PULL_REQUESTS:
if '[bot]' in item['title']: # skip auto-gen PR, created by our github actions workflows
continue
if '[databricks]' in item['title']: # strip ambiguous CI annotation
item['title'] = item['title'].replace('[databricks]', '').strip()
category = PRS
changelog[project][category].append({
"number": item['number'],
"title": item['title'],
"url": item['url'],
"time": item[time_field],
})
def process_pr(releases: set, token: str):
pr = []
for rel in releases:
pr.extend(fetch(resource_type=PULL_REQUESTS, token=token, variables={'baseRefName': f"branch-{rel}"}))
return pr
def process_issue(token: str):
return fetch(resource_type=ISSUES, token=token)
def fetch(resource_type: str, token: str, variables: dict = None):
items = []
if resource_type == PULL_REQUESTS and variables:
q = query_pr
elif resource_type == ISSUES:
q = query_issue
variables = {}
else:
return items
has_next = True
while has_next:
res = post(query=q, token=token, variable=variables)
if res.status_code == 200:
d = res.json()
has_next = d['data']['repository'][resource_type]["pageInfo"]["hasNextPage"]
variables['after'] = d['data']['repository'][resource_type]["pageInfo"]["endCursor"]
items.extend(d['data']['repository'][resource_type]['nodes'])
else:
raise Exception("Query failed to run by returning code of {}. {}".format(res.status_code, q))
return items
def post(query: str, token: str, variable: dict):
return requests.post('https://api.github.com/graphql',
json={'query': query, 'variables': variable},
headers={"Authorization": f"token {token}"})
def release_project(project_name: str, projects: set):
if project_name in projects:
return True
return False
def rules(labels: set):
if LABEL_WONTFIX in labels or LABEL_INVALID in labels or LABEL_DUPLICATE in labels:
return INVALID
if LABEL_BUG in labels:
return BUGS_FIXED
if LABEL_PERFORMANCE in labels or LABEL_SHUFFLE in labels:
return PERFORMANCE
if LABEL_FEATURE in labels or LABEL_SQL in labels:
return FEATURES
return INVALID
def form_changelog(path: str, changelog: dict):
sorted_dict = OrderedDict(sorted(changelog.items(), reverse=True))
subsections = ""
for project_name, issues in sorted_dict.items():
subsections += f"\n\n## {project_name}"
subsections += form_subsection(issues, FEATURES)
subsections += form_subsection(issues, PERFORMANCE)
subsections += form_subsection(issues, BUGS_FIXED)
subsections += form_subsection(issues, PRS)
markdown = f"""# Change log
Generated on {date.today()}{subsections}
\n## Older Releases
Changelog of older releases can be found at [docs/archives](/docs/archives)
"""
with open(path, "w") as file:
file.write(markdown)
def form_subsection(issues: dict, subtitle: str):
if len(issues[subtitle]) == 0:
return ''
subsection = f"\n\n### {subtitle}"
subsection += "\n|||\n|:---|:---|"
for issue in sorted(issues[subtitle], key=lambda x: x['time'], reverse=True):
subsection += f"\n|[#{issue['number']}]({issue['url']})|{issue['title']}|"
return subsection
def print_no_project_pr(no_project_prs: list):
if len(no_project_prs) != 0:
print("Merged Pull Requests w/o Project:")
for pr in no_project_prs:
print(f"{pr['baseRefName']} #{pr['number']} {pr['title']} {pr['url']}")
def main(rels: str, path: str, token: str):
print('Generating changelog ...')
try:
changelog = {} # changelog dict
releases = {x.strip() for x in rels.split(',')}
projects = {f"{RELEASE} {rel}" for rel in releases}
no_project_prs = [] # list of merge pr w/o project
print('Processing pull requests ...')
process_changelog(resource_type=PULL_REQUESTS, changelog=changelog,
releases=releases, projects=projects,
no_project_prs=no_project_prs, token=token)
print('Processing issues ...')
process_changelog(resource_type=ISSUES, changelog=changelog,
releases=releases, projects=projects,
no_project_prs=no_project_prs, token=token)
# form doc
form_changelog(path=path, changelog=changelog)
except Exception as e: # pylint: disable=broad-except
print(e)
sys.exit(1)
print('Done.')
# post action
print_no_project_pr(no_project_prs=no_project_prs)
if __name__ == '__main__':
parser = ArgumentParser(description="Changelog Generator")
parser.add_argument("--releases", help="list of release versions, separated by comma",
default="0.1,0.2,0.3")
parser.add_argument("--token", help="github token, will use GITHUB_TOKEN if empty", default='')
parser.add_argument("--path", help="path for generated changelog file", default='./CHANGELOG.md')
args = parser.parse_args()
github_token = args.token if args.token else os.environ.get('GITHUB_TOKEN')
assert github_token, 'env GITHUB_TOKEN should not be empty'
main(rels=args.releases, path=args.path, token=github_token)