2021-10-13 06:25:12 -05:00
|
|
|
{
|
|
|
|
"extends": [
|
|
|
|
"config:base"
|
|
|
|
],
|
|
|
|
"enabledManagers": ["npm"],
|
|
|
|
"ignoreDeps": [
|
2022-02-24 09:59:48 -06:00
|
|
|
"commander", // we are planning to remove this, so no need to update it
|
2021-11-19 09:56:59 -06:00
|
|
|
"execa", // we should bump this once we move to esm modules
|
2021-11-19 06:29:57 -06:00
|
|
|
"history", // we should bump this together with react-router-dom
|
2022-08-09 03:19:30 -05:00
|
|
|
"@mdx-js/react", // storybook peer-depends on its 1.x version, we should upgrade this when we upgrade storybook
|
2022-02-24 05:06:53 -06:00
|
|
|
"monaco-editor", // due to us exposing this via @grafana/ui/CodeEditor's props bumping can break plugins
|
2022-02-23 05:22:45 -06:00
|
|
|
"react-hook-form", // due to us exposing these hooks via @grafana/ui form components bumping can break plugins
|
2022-06-14 01:39:21 -05:00
|
|
|
"react-redux", // react-beautiful-dnd depends on react-redux 7.x, we need to update that one first
|
2021-11-19 06:29:57 -06:00
|
|
|
"react-router-dom", // we should bump this together with history
|
2021-10-13 06:25:12 -05:00
|
|
|
"ts-loader", // we should remove ts-loader and use babel-loader instead
|
2022-06-07 08:21:22 -05:00
|
|
|
"ora", // we should bump this once we move to esm modules
|
2023-10-03 03:22:17 -05:00
|
|
|
"@locker/near-membrane-dom", // critical library. we need to bump this only intentionally
|
|
|
|
"@locker/near-membrane-shared", // critical library. we need to bump this only intentionally
|
|
|
|
"@locker/near-membrane-shared-dom", // critical library. we need to bump this only intentionally
|
2021-10-13 06:25:12 -05:00
|
|
|
],
|
2023-10-16 10:31:43 -05:00
|
|
|
"includePaths": ["package.json", "packages/**", "public/app/plugins/**"],
|
2023-09-05 02:56:04 -05:00
|
|
|
"ignorePaths": ["emails/**", "plugins-bundled/**", "**/mocks/**"],
|
2022-06-24 05:59:06 -05:00
|
|
|
"labels": ["area/frontend", "dependencies", "no-backport", "no-changelog"],
|
2023-10-04 07:29:10 -05:00
|
|
|
"postUpdateOptions": ["yarnDedupeHighest"],
|
2021-11-26 09:59:01 -06:00
|
|
|
"packageRules": [
|
|
|
|
{
|
|
|
|
"matchUpdateTypes": ["patch"],
|
2023-10-03 05:32:37 -05:00
|
|
|
"excludePackagePatterns": ["^@?storybook"],
|
2022-01-07 06:32:09 -06:00
|
|
|
"extends": ["schedule:monthly"],
|
|
|
|
"groupName": "Monthly patch updates"
|
2022-01-24 05:44:36 -06:00
|
|
|
},
|
|
|
|
{
|
2023-10-03 05:32:37 -05:00
|
|
|
"matchPackagePatterns": ["^@?storybook"],
|
2022-01-24 05:44:36 -06:00
|
|
|
"extends": ["schedule:monthly"],
|
|
|
|
"groupName": "Storybook updates"
|
2022-11-01 06:52:17 -05:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"groupName": "React Aria",
|
|
|
|
"matchPackagePrefixes": [
|
|
|
|
"@react-aria/",
|
|
|
|
"@react-stately/"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"groupName": "Moveable",
|
|
|
|
"matchPackageNames": [
|
|
|
|
"moveable",
|
|
|
|
"react-moveable"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"groupName": "Slate",
|
|
|
|
"matchPackageNames": [
|
2022-11-02 08:42:53 -05:00
|
|
|
"@types/slate",
|
|
|
|
"@types/slate-react",
|
2022-11-01 06:52:17 -05:00
|
|
|
"slate",
|
|
|
|
"slate-react"
|
|
|
|
]
|
2022-11-07 04:30:23 -06:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"groupName": "d3",
|
|
|
|
"matchPackagePrefixes": [
|
|
|
|
"d3",
|
|
|
|
"@types/d3"
|
|
|
|
]
|
|
|
|
},
|
2023-01-04 08:32:57 -06:00
|
|
|
{
|
|
|
|
"groupName": "visx",
|
|
|
|
"matchPackagePrefixes": [
|
|
|
|
"@visx/"
|
|
|
|
]
|
2023-03-08 05:48:51 -06:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"groupName": "uLibraries",
|
|
|
|
"matchPackageNames": [
|
|
|
|
"@leeoniya/ufuzzy",
|
|
|
|
"uplot"
|
|
|
|
],
|
|
|
|
"reviewers": ["leeoniya"],
|
|
|
|
},
|
2021-11-26 10:36:23 -06:00
|
|
|
],
|
2021-10-13 06:25:12 -05:00
|
|
|
"pin": {
|
|
|
|
"enabled": false
|
|
|
|
},
|
|
|
|
"prConcurrentLimit": 10,
|
2022-12-09 03:45:38 -06:00
|
|
|
"rebaseWhen": "conflicted",
|
2021-10-13 06:25:12 -05:00
|
|
|
"reviewers": ["team:grafana/frontend-ops"],
|
|
|
|
"separateMajorMinor": false,
|
|
|
|
"vulnerabilityAlerts": {
|
|
|
|
"addLabels": ["area/security"]
|
|
|
|
}
|
|
|
|
}
|