Skip to content

Commit 07a58dd

Browse files
committedJan 23, 2013
chore(changelog.js): improve the changelog script
1 parent ffe5e01 commit 07a58dd

File tree

2 files changed

+30
-25
lines changed

2 files changed

+30
-25
lines changed
 

‎changelog.js

+27-22
Original file line numberDiff line numberDiff line change
@@ -36,16 +36,15 @@ var parseRawCommit = function(raw) {
3636
msg.breaks = [];
3737

3838
lines.forEach(function(line) {
39-
match = line.match(/Closes\s#(\d+)/);
39+
match = line.match(/(?:Closes|Fixes)\s#(\d+)/);
4040
if (match) msg.closes.push(parseInt(match[1]));
4141
});
42-
42+
4343
match = raw.match(/BREAKING CHANGE:([\s\S]*)/);
4444
if (match) {
45-
console.log('found!!!')
46-
msg.breaks.push(match[1]);
45+
msg.breaking = match[1];
4746
}
48-
47+
4948

5049
msg.body = lines.join('\n');
5150
match = msg.subject.match(/^(.*)\((.*)\)\:\s(.*)$/);
@@ -88,7 +87,8 @@ var currentDate = function() {
8887
};
8988

9089

91-
var printSection = function(stream, title, section) {
90+
var printSection = function(stream, title, section, printCommitLinks) {
91+
printCommitLinks = printCommitLinks === undefined ? true : printCommitLinks;
9292
var components = Object.getOwnPropertyNames(section).sort();
9393

9494
if (!components.length) return;
@@ -109,11 +109,15 @@ var printSection = function(stream, title, section) {
109109
}
110110

111111
section[name].forEach(function(commit) {
112-
stream.write(util.format('%s %s (%s', prefix, commit.subject, linkToCommit(commit.hash)));
113-
if (commit.closes.length) {
114-
stream.write(', closes ' + commit.closes.map(linkToIssue).join(', '));
112+
if (printCommitLinks) {
113+
stream.write(util.format('%s %s\n (%s', prefix, commit.subject, linkToCommit(commit.hash)));
114+
if (commit.closes.length) {
115+
stream.write(',\n ' + commit.closes.map(linkToIssue).join(', '));
116+
}
117+
stream.write(')\n');
118+
} else {
119+
stream.write(util.format('%s %s', prefix, commit.subject));
115120
}
116-
stream.write(')\n');
117121
});
118122
});
119123

@@ -122,7 +126,7 @@ var printSection = function(stream, title, section) {
122126

123127

124128
var readGitLog = function(grep, from) {
125-
var deffered = q.defer();
129+
var deferred = q.defer();
126130

127131
// TODO(vojta): if it's slow, use spawn and stream it instead
128132
child.exec(util.format(GIT_LOG_CMD, grep, '%H%n%s%n%b%n==END==', from), function(code, stdout, stderr) {
@@ -133,10 +137,10 @@ var readGitLog = function(grep, from) {
133137
if (commit) commits.push(commit);
134138
});
135139

136-
deffered.resolve(commits);
140+
deferred.resolve(commits);
137141
});
138142

139-
return deffered.promise;
143+
return deferred.promise;
140144
};
141145

142146

@@ -158,29 +162,30 @@ var writeChangelog = function(stream, commits, version) {
158162
section[component].push(commit);
159163
}
160164

161-
commit.breaks.forEach(function(breakMsg) {
162-
sections.breaks[EMPTY_COMPONENT].push({
163-
subject: breakMsg,
165+
if (commit.breaking) {
166+
sections.breaks[component] = sections.breaks[component] || [];
167+
sections.breaks[component].push({
168+
subject: util.format("due to %s,\n %s", linkToCommit(commit.hash), commit.breaking),
164169
hash: commit.hash,
165170
closes: []
166171
});
167-
});
172+
};
168173
});
169174

170175
stream.write(util.format(HEADER_TPL, version, version, currentDate()));
171176
printSection(stream, 'Bug Fixes', sections.fix);
172177
printSection(stream, 'Features', sections.feat);
173-
printSection(stream, 'Breaking Changes', sections.breaks);
178+
printSection(stream, 'Breaking Changes', sections.breaks, false);
174179
}
175180

176181

177182
var getPreviousTag = function() {
178-
var deffered = q.defer();
183+
var deferred = q.defer();
179184
child.exec(GIT_TAG_CMD, function(code, stdout, stderr) {
180-
if (code) deffered.reject('Cannot get the previous tag.');
181-
else deffered.resolve(stdout.replace('\n', ''));
185+
if (code) deferred.reject('Cannot get the previous tag.');
186+
else deferred.resolve(stdout.replace('\n', ''));
182187
});
183-
return deffered.promise;
188+
return deferred.promise;
184189
};
185190

186191

‎changelog.spec.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@ describe('changelog.js', function() {
3434
'13f31602f396bc269076ab4d389cfd8ca94b20ba\n' +
3535
'feat(ng-list): Allow custom separator\n' +
3636
'bla bla bla\n\n' +
37-
'Breaks first breaking change\nsomething else\n' +
38-
'Breaks another breaking change\n');
37+
'BREAKING CHANGE: first breaking change\nsomething else\n' +
38+
'another line with more info\n');
3939

40-
expect(msg.breaks).toEqual(['first breaking change', 'another breaking change']);
40+
expect(msg.breaking).toEqual(' first breaking change\nsomething else\nanother line with more info\n');
4141
});
4242
});
4343
});

0 commit comments

Comments
 (0)
Please sign in to comment.