Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion release-please-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@
{ "type": "ci", "section": "🤖 Continuous Integration" },
{ "type": "test", "section": "🧪 Testing", "hidden": true },
{ "type": "style", "section": "🎨 Styles", "hidden": true },
{ "type": "chore(deps)", "section": "📦 Dependency Updates", "hidden": true },
{ "type": "chore(deps-core)", "section": "📦 Dependency Updates (Core)" },
{ "type": "chore(deps)", "section": "📦 Dependency Updates (Other)", "hidden": true },
{ "type": "chore", "section": "🧹 Chore", "hidden": true }
]
}
Expand Down
13 changes: 13 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,19 @@
"description": "Group vite-plus with vitest and @vitest/coverage-v8 so their versions always stay in sync. vite-plus bundles vitest as a direct dep; a mismatch causes SnapshotClient errors at runtime.",
"matchPackageNames": ["vite-plus", "vitest", "@vitest/coverage-v8"],
"groupName": "vite-plus / vitest"
},
{
"description": "Give updates to core runtime dependencies (Electron shell, tray integration, UI primitives, GitHub API client) a distinct commit scope so release-please can surface them in the changelog instead of hiding them with routine dependency bumps",
"matchPackageNames": [
"electron",
"electron-menubar",
"electron-updater",
"@primer/react",
"@primer/octicons-react",
"@primer/css",
"@octokit/**"
],
"semanticCommitScope": "deps-core"
}
],
"customManagers": [
Expand Down