We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 88d9c61 commit 8e6ac47Copy full SHA for 8e6ac47
lib/prepare_release.js
@@ -377,7 +377,7 @@ class ReleasePreparation {
377
378
const notableChanges = this.getBranchDiff({
379
onlyNotableChanges: true,
380
- simple: true
+ format: 'plaintext'
381
});
382
messageBody.push('Notable changes:\n\n');
383
messageBody.push(notableChanges);
@@ -431,12 +431,9 @@ class ReleasePreparation {
431
branchDiffOptions = [
432
`${upstream}/${releaseBranch}`,
433
proposalBranch,
434
- `--require-label=${notableLabels.join(',')}`
+ `--require-label=${notableLabels.join(',')}`,
435
+ `--format=${opts.format || 'markdown'}`
436
];
-
437
- if (opts.simple) {
438
- branchDiffOptions.push('--simple');
439
- }
440
} else {
441
const excludeLabels = [
442
'semver-major',
0 commit comments