-
-
Notifications
You must be signed in to change notification settings - Fork 335
/
Copy pathchangelog-setup.js
199 lines (168 loc) · 6.28 KB
/
changelog-setup.js
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
const semver = require('semver'); // eslint-disable-line import/no-extraneous-dependencies
let changelogDeps = {},
loopVersion = '',
uniqueCommits = []
;
const issueLinks = function (item) {
if (typeof loopVersion !== 'string') {
return item;
}
let repository = semver.gte(loopVersion, '2.4.0') ? 'fomantic/Fomantic-UI' : 'Semantic-Org/Semantic-UI';
item.subject = item.subject.replace(/#(\d+)([ ,]|$)/, '[`#$1`](https://github.com/' + repository + '/issues/$1) ');
return item;
};
module.exports = function (Handlebars) {
Handlebars.registerHelper('commit-list-enhanced', (context, options) => {
const {
exclude,
message,
subject,
heading,
} = options.hash;
if (!context || context.length === 0 || !heading) {
return '';
}
loopVersion = options.data.root.releases[options.data.index].tag;
uniqueCommits = [];
let list = context
.filter((item) => {
const commit = item.commit || item;
if (exclude) {
const pattern = new RegExp(exclude, 'm');
if (pattern.test(commit.message)) {
return false;
}
}
if (message) {
const pattern = new RegExp(message, 'm');
return pattern.test(commit.message);
}
if (subject) {
const pattern = new RegExp(subject);
return pattern.test(commit.subject);
}
return true;
})
.filter((item) => {
if (uniqueCommits.includes(item.subject)) {
return false;
}
uniqueCommits.push(item.subject);
return true;
})
.map(issueLinks)
.map((item) => options.fn(item));
if (list.length === 0) {
return '';
}
list = list.filter((item) => item.trim() !== '').sort().join('');
let returnString = '';
if (heading) {
returnString = `${heading}\n\n`;
}
if (list) {
returnString += `${list}\n`;
}
return returnString;
});
Handlebars.registerHelper('noprefix', (text) => {
if (!(typeof text === 'string')) {
return '';
}
let result = text.replace(/^(\w+(\([^()]+\))?:|\[[\w ]+]) */, '');
return new Handlebars.SafeString(result);
});
Handlebars.registerHelper('contributorlink', (text) => {
if (!(typeof text === 'string')) {
return '';
}
let result = text.replace(/add ([\dA-Za-z-]+) as a contributor/, '[`$1`](https://github.com/$1)');
return Handlebars.helpers.noprefix(result);
});
Handlebars.registerHelper('commit-list-dependencies', (context, options) => {
const {
exclude,
message,
subject,
heading,
} = options.hash;
if (!context || context.length === 0 || !heading) {
return '';
}
loopVersion = options.data.root.releases[options.data.index].tag;
changelogDeps = {};
const
depsRegex = /(?:build\(deps[A-Za-z-]*\):|\[Snyk]) (?:\[?[Ss]ecurity]? )?(?:bump|upgrade) ([\w./@-]+) from (\d+\.\d+\.\d+) to (\d+\.\d+\.\d+)/,
detectVersionRange = function (item) {
let subjectDetails = item.subject.match(depsRegex);
if (!subjectDetails) {
return true;
}
let depPackage = subjectDetails[1],
depVersionFrom = subjectDetails[2],
depVersionTo = subjectDetails[3]
;
if (!changelogDeps[depPackage]) {
changelogDeps[depPackage] = {
from: '999.999.999',
to: '0.0.0',
};
}
if (semver.lt(depVersionFrom, changelogDeps[depPackage].from)) {
changelogDeps[depPackage].from = depVersionFrom;
}
if (semver.gte(depVersionTo, changelogDeps[depPackage].to)) {
changelogDeps[depPackage].to = depVersionTo;
return true;
}
return false;
},
list = context
.filter((item) => {
const commit = item.commit || item;
if (exclude) {
const pattern = new RegExp(exclude, 'm');
if (pattern.test(commit.message)) {
return false;
}
}
if (message) {
const pattern = new RegExp(message, 'm');
return pattern.test(commit.message);
}
if (subject) {
const pattern = new RegExp(subject);
return pattern.test(commit.subject);
}
return true;
})
.filter(detectVersionRange)
// second round as the previous list came unordered from git
.filter(detectVersionRange)
// adjust from version to create the whole range in one line (linked to the latest commit)
.map((item) => {
let subjectDetails = item.subject.match(depsRegex);
if (!subjectDetails) {
return item;
}
let
depPackage = subjectDetails[1],
depVersionFrom = subjectDetails[2]
;
item.subject = item.subject.replace(depVersionFrom, changelogDeps[depPackage].from);
return item;
})
.map(issueLinks)
.map((item) => options.fn(item))
.sort()
.join('')
;
if (!list) {
return '';
}
if (!heading) {
return `${list}\n`;
}
return `${heading}\n\n${list}\n`;
});
};