Skip to content

Commit

Permalink
feat(presets): add poetry manager support to `:semanticPrefixFixDep…
Browse files Browse the repository at this point in the history
…sChoreOthers` preset (#32246)
  • Loading branch information
sisp authored Nov 1, 2024
1 parent f6c2f05 commit 1810672
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
10 changes: 10 additions & 0 deletions lib/config/presets/__snapshots__/index.spec.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,16 @@ exports[`config/presets/index resolvePreset migrates automerge in presets 1`] =
],
"semanticCommitType": "fix",
},
{
"matchDepTypes": [
"dependencies",
"extras",
],
"matchManagers": [
"poetry",
],
"semanticCommitType": "fix",
},
{
"matchPackageNames": [
"*",
Expand Down
5 changes: 5 additions & 0 deletions lib/config/presets/internal/default.ts
Original file line number Diff line number Diff line change
Expand Up @@ -582,6 +582,11 @@ export const presets: Record<string, Preset> = {
matchManagers: ['pep621'],
semanticCommitType: 'fix',
},
{
matchDepTypes: ['dependencies', 'extras'],
matchManagers: ['poetry'],
semanticCommitType: 'fix',
},
],
},
separateMajorReleases: {
Expand Down

0 comments on commit 1810672

Please sign in to comment.