We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f6dda1c commit a21f963Copy full SHA for a21f963
lib/prepare_release.js
@@ -481,7 +481,10 @@ export default class ReleasePreparation extends Session {
481
const data = await fs.readFile(majorChangelogPath, 'utf8');
482
const arr = data.split('\n');
483
const allCommits = this.getChangelog();
484
- const notableChanges = await this.getBranchDiff({ onlyNotableChanges: true });
+ const notableChanges = await this.getBranchDiff({
485
+ onlyNotableChanges: true,
486
+ format: isSecurityRelease ? 'messageonly' : 'markdown',
487
+ });
488
let releaseHeader = `## ${date}, Version ${newVersion}` +
489
` ${releaseInfo}, @${username}\n`;
490
if (isSecurityRelease) {
0 commit comments