-
-
Notifications
You must be signed in to change notification settings - Fork 335
Expand file tree
/
Copy pathchangelog-setup.js
More file actions
215 lines (180 loc) · 6.77 KB
/
changelog-setup.js
File metadata and controls
215 lines (180 loc) · 6.77 KB
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
const semver = require('semver'); // eslint-disable-line import/no-extraneous-dependencies
let changelogDeps = {};
let loopVersion = '';
let uniqueCommits = [];
let isMajor = false;
let isMinor = false;
const issueLinks = function (item) {
if (typeof loopVersion !== 'string') {
return item;
}
const 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-collector', (merges, commits, major, minor, options) => {
const commitsFromMerges = merges.map((merge) => merge.commit);
const result = [...commits, ...commitsFromMerges];
isMajor = major;
isMinor = minor;
return options.fn(result);
});
Handlebars.registerHelper('commit-list-breaking', (context, options) => (isMajor || isMinor ? Handlebars.helpers['commit-list-enhanced'](context, options) : ''));
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 '';
}
const result = text.replace(/^(\w+(\([^()]+\))?:|\[[\w ]+]) */, '');
return new Handlebars.SafeString(result);
});
Handlebars.registerHelper('contributorlink', (text) => {
if (!(typeof text === 'string')) {
return '';
}
const 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+)/;
const detectVersionRange = function (item) {
const subjectDetails = item.subject.match(depsRegex);
if (!subjectDetails) {
return true;
}
const depPackage = subjectDetails[1];
const depVersionFrom = subjectDetails[2];
const 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;
};
uniqueCommits = [];
const 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;
})
.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) => {
const subjectDetails = item.subject.match(depsRegex);
if (!subjectDetails) {
return item;
}
const depPackage = subjectDetails[1];
const 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`;
});
};