@@ -36,16 +36,15 @@ var parseRawCommit = function(raw) {
36
36
msg . breaks = [ ] ;
37
37
38
38
lines . forEach ( function ( line ) {
39
- match = line . match ( / C l o s e s \s # ( \d + ) / ) ;
39
+ match = line . match ( / (?: C l o s e s | F i x e s ) \s # ( \d + ) / ) ;
40
40
if ( match ) msg . closes . push ( parseInt ( match [ 1 ] ) ) ;
41
41
} ) ;
42
-
42
+
43
43
match = raw . match ( / B R E A K I N G C H A N G E : ( [ \s \S ] * ) / ) ;
44
44
if ( match ) {
45
- console . log ( 'found!!!' )
46
- msg . breaks . push ( match [ 1 ] ) ;
45
+ msg . breaking = match [ 1 ] ;
47
46
}
48
-
47
+
49
48
50
49
msg . body = lines . join ( '\n' ) ;
51
50
match = msg . subject . match ( / ^ ( .* ) \( ( .* ) \) \: \s ( .* ) $ / ) ;
@@ -88,7 +87,8 @@ var currentDate = function() {
88
87
} ;
89
88
90
89
91
- var printSection = function ( stream , title , section ) {
90
+ var printSection = function ( stream , title , section , printCommitLinks ) {
91
+ printCommitLinks = printCommitLinks === undefined ? true : printCommitLinks ;
92
92
var components = Object . getOwnPropertyNames ( section ) . sort ( ) ;
93
93
94
94
if ( ! components . length ) return ;
@@ -109,11 +109,15 @@ var printSection = function(stream, title, section) {
109
109
}
110
110
111
111
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 ) ) ;
115
120
}
116
- stream . write ( ')\n' ) ;
117
121
} ) ;
118
122
} ) ;
119
123
@@ -122,7 +126,7 @@ var printSection = function(stream, title, section) {
122
126
123
127
124
128
var readGitLog = function ( grep , from ) {
125
- var deffered = q . defer ( ) ;
129
+ var deferred = q . defer ( ) ;
126
130
127
131
// TODO(vojta): if it's slow, use spawn and stream it instead
128
132
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) {
133
137
if ( commit ) commits . push ( commit ) ;
134
138
} ) ;
135
139
136
- deffered . resolve ( commits ) ;
140
+ deferred . resolve ( commits ) ;
137
141
} ) ;
138
142
139
- return deffered . promise ;
143
+ return deferred . promise ;
140
144
} ;
141
145
142
146
@@ -158,29 +162,30 @@ var writeChangelog = function(stream, commits, version) {
158
162
section [ component ] . push ( commit ) ;
159
163
}
160
164
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 ) ,
164
169
hash : commit . hash ,
165
170
closes : [ ]
166
171
} ) ;
167
- } ) ;
172
+ } ;
168
173
} ) ;
169
174
170
175
stream . write ( util . format ( HEADER_TPL , version , version , currentDate ( ) ) ) ;
171
176
printSection ( stream , 'Bug Fixes' , sections . fix ) ;
172
177
printSection ( stream , 'Features' , sections . feat ) ;
173
- printSection ( stream , 'Breaking Changes' , sections . breaks ) ;
178
+ printSection ( stream , 'Breaking Changes' , sections . breaks , false ) ;
174
179
}
175
180
176
181
177
182
var getPreviousTag = function ( ) {
178
- var deffered = q . defer ( ) ;
183
+ var deferred = q . defer ( ) ;
179
184
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' , '' ) ) ;
182
187
} ) ;
183
- return deffered . promise ;
188
+ return deferred . promise ;
184
189
} ;
185
190
186
191
0 commit comments