From 73fd46a4d340b475c96aa46adfbbc2e2df851097 Mon Sep 17 00:00:00 2001 From: Daniel Roe Date: Wed, 19 Jun 2024 14:16:42 +0100 Subject: [PATCH] chore: allow changelogs with breaking changes --- scripts/update-changelog.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/update-changelog.ts b/scripts/update-changelog.ts index 9dab8a8b94..7da75bb731 100644 --- a/scripts/update-changelog.ts +++ b/scripts/update-changelog.ts @@ -11,7 +11,7 @@ async function main () { const config = await loadChangelogConfig(process.cwd(), {}) const commits = await getLatestCommits().then(commits => commits.filter( - c => config.types[c.type] && !(c.type === 'chore' && c.scope === 'deps' && !c.isBreaking), + c => config.types[c.type] && !(c.type === 'chore' && c.scope === 'deps'), )) const bumpType = await determineBumpType() || 'patch'