-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchangelog_generator.py
218 lines (170 loc) · 6.83 KB
/
changelog_generator.py
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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# MIT License. This file is part of telegram_me.
#
# Copyright (c) 2020 Hearot
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
import os
import re
import sys
import time
from collections import defaultdict
from git import Repo
from pathlib import Path
import telegram_me
CHANGELOG_FILE = "CHANGELOG.md"
COMMIT_URL_FORMAT = "https://github.com/%s/%s/commit/%%s"
COMMIT_URL = ""
COMMIT_URL_REGEX = r"git@github.com:(.+)\/(.+).git"
CURRENT_VERSION = "Current version"
FEATURES_FILE = "FEATURES.md"
CONVENTIONAL_COMMITS_REGEX = r"^([a-z]+)(!)?(?:\([a-z]+\)+)?: ([^\n]+)+$"
TEMP_FILE = ".temp_post_commit"
TITLES = {
"!": "‼️ Breaking changes",
"build": "Build changes",
"chore": "Other changes",
"docs": "Documentation",
"feat": "New features",
"fix": "Fixes",
"refactor": "Refactoring",
"style": "Style changes",
"test": "Testing changes",
}
commit_url_format = re.compile(COMMIT_URL_REGEX)
match_commit = re.compile(CONVENTIONAL_COMMITS_REGEX)
titles = defaultdict(lambda: "New features")
titles.update(TITLES)
version_tree = defaultdict(lambda: defaultdict(list))
def add_date(repo: Repo, version: str) -> str:
commit = repo.commit(version)
return "%s - %s" % (
version,
time.strftime("%Y-%m-%d", time.gmtime(commit.committed_date)),
)
def commit_amend(repo: Repo):
try:
repo.git.add(CHANGELOG_FILE)
repo.git.add(FEATURES_FILE)
repo.git.commit("--amend", "--no-edit", "--no-verify", "-S")
finally:
os.remove(TEMP_FILE)
def upper_first_letter(text: str) -> str:
return text[0].upper() + text[1:]
def generate_changelog(repo: Repo):
global CURRENT_VERSION
tags_list = sorted(repo.tags, key=lambda t: t.commit.committed_date) + [""]
tags = iter(tags_list)
tag = ""
next_tag = str(next(repo.iter_commits(max_count=1, max_parents=0)))
if "v" + telegram_me.__version__ not in list(map(str, tags_list)):
CURRENT_VERSION = "v" + telegram_me.__version__
try:
while True:
tag = next_tag
next_tag = str(next(tags))
print(">>> FROM %s TO %s <<<" % (tag, next_tag))
commits = repo.iter_commits(
str(tag) + "..." + str(next_tag), reverse=True
)
for commit in commits:
match = match_commit.search(commit.message.split("\n")[0])
if match:
type_commit = match.group(1)
breaking_change = match.group(2)
breaking_change = (
breaking_change if breaking_change else ""
)
brief_message = match.group(3)
suffix = " "
if (
isinstance(breaking_change, str)
and breaking_change == "!"
):
type_commit = "!"
if commit != repo.head.commit:
suffix += "([%s](%s))" % (
str(commit),
COMMIT_URL % str(commit),
)
version_tree[next_tag][titles[type_commit]].append(
(
("%s" + suffix) % upper_first_letter(brief_message)
).rstrip()
)
print(
" " + type_commit + breaking_change + ":",
brief_message,
)
except StopIteration:
pass
if "" in version_tree:
version_tree[CURRENT_VERSION] = version_tree.pop("")
changelog_file = os.path.join(
os.path.dirname(os.path.realpath(__file__)), CHANGELOG_FILE
)
features_file = os.path.join(
os.path.dirname(os.path.realpath(__file__)), FEATURES_FILE
)
with open(changelog_file, "w", encoding="utf-8") as f:
f.write("# Changelog\n")
for version in map(str, reversed(tags_list)):
version = version if version else CURRENT_VERSION
types = version_tree[version]
if version != CURRENT_VERSION:
f.write("\n## %s\n" % add_date(repo, version))
else:
f.write("\n## %s\n" % CURRENT_VERSION)
for type_commit in sorted(types.keys()):
commits = types[type_commit]
f.write("\n### %s\n\n" % type_commit)
for commit in sorted(commits):
f.write(" - %s\n" % commit)
with open(features_file, "w", encoding="utf-8") as f:
types = version_tree[CURRENT_VERSION]
len_keys = sum(1 for _ in types.keys())
for index, type_commit in enumerate(sorted(types.keys())):
commits = types[type_commit]
f.write("### %s\n\n" % type_commit)
for commit in sorted(commits):
f.write(" - %s\n" % commit)
if index != len_keys - 1:
f.write("\n")
if __name__ == "__main__":
repo = Repo(os.path.dirname(os.path.realpath(__file__)))
first_post_commit = not os.path.isfile(TEMP_FILE)
origin_url = next(repo.remotes.origin.urls)
if origin_url.startswith("https://"):
COMMIT_URL = (
origin_url.replace(".git/", "").replace(".git", "") + "/commit/%s"
)
else:
match_url = commit_url_format.search(origin_url)
if not match_url:
raise ValueError("origin must be a valid reference")
author, repository_name = match_url.group(1), match_url.group(2)
COMMIT_URL = COMMIT_URL_FORMAT % (author, repository_name)
print("COMMIT PREFIX URL: %s" % COMMIT_URL)
if sys.argv[-1] == "generate":
generate_changelog(repo)
elif first_post_commit:
Path(TEMP_FILE).touch()
generate_changelog(repo)
commit_amend(repo)