We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d98a16 commit de49b89Copy full SHA for de49b89
1 file changed
lib/git/changelog.js
@@ -244,11 +244,9 @@ export default class GitChangelog {
244
}
245
246
// secondary changes
247
- const secondaryChanges = this.#changes.getChanges( change => !change.isBreakingChange && !primaryTypes.has( change.type ) );
248
-
249
this.#changesGroups.push( {
250
"name": "Other changes",
251
- "changes": secondaryChanges,
+ "changes": this.#changes.getChanges( change => !change.isBreakingChange && !primaryTypes.has( change.type ) && !change.isReleaseChange ),
252
"report": true,
253
"primaryChange": false,
254
"showAnnotatiion": true,
0 commit comments