renovate 41.101.0 → 41.103.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/config/options/index.js +8 -0
- package/dist/config/options/index.js.map +1 -1
- package/dist/util/http/cache/repository-http-cache-provider.d.ts +14 -1
- package/dist/util/http/cache/repository-http-cache-provider.js +49 -1
- package/dist/util/http/cache/repository-http-cache-provider.js.map +1 -1
- package/dist/workers/repository/dependency-dashboard.js +42 -5
- package/dist/workers/repository/dependency-dashboard.js.map +1 -1
- package/dist/workers/types.d.ts +1 -0
- package/dist/workers/types.js.map +1 -1
- package/package.json +1 -1
- package/renovate-schema.json +8 -0
@@ -731,6 +731,14 @@ const options = [
|
|
731
731
|
type: 'string',
|
732
732
|
default: `Dependency Dashboard`,
|
733
733
|
},
|
734
|
+
{
|
735
|
+
name: 'dependencyDashboardCategory',
|
736
|
+
description: 'The category to group branches on the Dependency Dashboard issue.',
|
737
|
+
type: 'string',
|
738
|
+
default: null,
|
739
|
+
cli: false,
|
740
|
+
env: false,
|
741
|
+
},
|
734
742
|
{
|
735
743
|
name: 'dependencyDashboardHeader',
|
736
744
|
description: 'Any text added here will be placed first in the Dependency Dashboard issue body.',
|