renovate 41.152.9 → 41.153.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.
Files changed (38) hide show
  1. package/dist/config/app-strings.d.ts +2 -1
  2. package/dist/config/app-strings.js +10 -2
  3. package/dist/config/app-strings.js.map +1 -1
  4. package/dist/config/options/index.js +13 -2
  5. package/dist/config/options/index.js.map +1 -1
  6. package/dist/config/types.d.ts +4 -0
  7. package/dist/config/types.js.map +1 -1
  8. package/dist/config/validation.js +2 -2
  9. package/dist/config/validation.js.map +1 -1
  10. package/dist/config-validator.js +1 -1
  11. package/dist/config-validator.js.map +1 -1
  12. package/dist/modules/datasource/nuget/v3.js +3 -1
  13. package/dist/modules/datasource/nuget/v3.js.map +1 -1
  14. package/dist/modules/manager/renovate-config-presets/index.js +1 -1
  15. package/dist/modules/manager/renovate-config-presets/index.js.map +1 -1
  16. package/dist/modules/platform/github/index.js +1 -1
  17. package/dist/modules/platform/github/index.js.map +1 -1
  18. package/dist/util/git/index.js +1 -1
  19. package/dist/util/git/index.js.map +1 -1
  20. package/dist/workers/global/config/parse/file.js +6 -0
  21. package/dist/workers/global/config/parse/file.js.map +1 -1
  22. package/dist/workers/repository/finalize/prune.js +3 -2
  23. package/dist/workers/repository/finalize/prune.js.map +1 -1
  24. package/dist/workers/repository/init/inherited.js +7 -0
  25. package/dist/workers/repository/init/inherited.js.map +1 -1
  26. package/dist/workers/repository/init/merge.js +1 -1
  27. package/dist/workers/repository/init/merge.js.map +1 -1
  28. package/dist/workers/repository/onboarding/branch/check.js +2 -2
  29. package/dist/workers/repository/onboarding/branch/check.js.map +1 -1
  30. package/dist/workers/repository/onboarding/common.js +3 -2
  31. package/dist/workers/repository/onboarding/common.js.map +1 -1
  32. package/dist/workers/repository/process/extract-update.js +2 -2
  33. package/dist/workers/repository/process/extract-update.js.map +1 -1
  34. package/dist/workers/repository/process/index.d.ts +1 -0
  35. package/dist/workers/repository/process/index.js +14 -5
  36. package/dist/workers/repository/process/index.js.map +1 -1
  37. package/package.json +3 -3
  38. package/renovate-schema.json +15 -4
@@ -1 +1,2 @@
1
- export declare const configFileNames: string[];
1
+ export declare function setUserConfigFileNames(fileNames: string[]): void;
2
+ export declare function getConfigFileNames(): string[];
@@ -1,7 +1,8 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.configFileNames = void 0;
4
- exports.configFileNames = [
3
+ exports.setUserConfigFileNames = setUserConfigFileNames;
4
+ exports.getConfigFileNames = getConfigFileNames;
5
+ const configFileNames = [
5
6
  'renovate.json',
6
7
  'renovate.json5',
7
8
  '.github/renovate.json',
@@ -13,4 +14,11 @@ exports.configFileNames = [
13
14
  '.renovaterc.json5',
14
15
  'package.json',
15
16
  ];
17
+ let userAddedConfigFileNames = [];
18
+ function setUserConfigFileNames(fileNames) {
19
+ userAddedConfigFileNames = fileNames;
20
+ }
21
+ function getConfigFileNames() {
22
+ return [...userAddedConfigFileNames, ...configFileNames];
23
+ }
16
24
  //# sourceMappingURL=app-strings.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"app-strings.js","sourceRoot":"","sources":["../../lib/config/app-strings.ts"],"names":[],"mappings":";;;AAAa,QAAA,eAAe,GAAG;IAC7B,eAAe;IACf,gBAAgB;IAChB,uBAAuB;IACvB,wBAAwB;IACxB,uBAAuB;IACvB,wBAAwB;IACxB,aAAa;IACb,kBAAkB;IAClB,mBAAmB;IACnB,cAAc;CACf,CAAC","sourcesContent":["export const configFileNames = [\n 'renovate.json',\n 'renovate.json5',\n '.github/renovate.json',\n '.github/renovate.json5',\n '.gitlab/renovate.json',\n '.gitlab/renovate.json5',\n '.renovaterc',\n '.renovaterc.json',\n '.renovaterc.json5',\n 'package.json',\n];\n"]}
1
+ {"version":3,"file":"app-strings.js","sourceRoot":"","sources":["../../lib/config/app-strings.ts"],"names":[],"mappings":";;AAeA,wDAEC;AAED,gDAEC;AArBD,MAAM,eAAe,GAAG;IACtB,eAAe;IACf,gBAAgB;IAChB,uBAAuB;IACvB,wBAAwB;IACxB,uBAAuB;IACvB,wBAAwB;IACxB,aAAa;IACb,kBAAkB;IAClB,mBAAmB;IACnB,cAAc;CACf,CAAC;AAEF,IAAI,wBAAwB,GAAa,EAAE,CAAC;AAE5C,SAAgB,sBAAsB,CAAC,SAAmB;IACxD,wBAAwB,GAAG,SAAS,CAAC;AACvC,CAAC;AAED,SAAgB,kBAAkB;IAChC,OAAO,CAAC,GAAG,wBAAwB,EAAE,GAAG,eAAe,CAAC,CAAC;AAC3D,CAAC","sourcesContent":["const configFileNames = [\n 'renovate.json',\n 'renovate.json5',\n '.github/renovate.json',\n '.github/renovate.json5',\n '.gitlab/renovate.json',\n '.gitlab/renovate.json5',\n '.renovaterc',\n '.renovaterc.json',\n '.renovaterc.json5',\n 'package.json',\n];\n\nlet userAddedConfigFileNames: string[] = [];\n\nexport function setUserConfigFileNames(fileNames: string[]): void {\n userAddedConfigFileNames = fileNames;\n}\n\nexport function getConfigFileNames(): string[] {\n return [...userAddedConfigFileNames, ...configFileNames];\n}\n"]}
@@ -218,6 +218,17 @@ const options = [
218
218
  inheritConfigSupport: true,
219
219
  cli: false,
220
220
  },
221
+ {
222
+ name: 'configFileNames',
223
+ description: 'List of filenames where repository config will be stored.',
224
+ type: 'array',
225
+ subType: 'string',
226
+ default: null,
227
+ globalOnly: true,
228
+ inheritConfigSupport: true,
229
+ cli: false,
230
+ env: false,
231
+ },
221
232
  {
222
233
  name: 'onboardingConfigFileName',
223
234
  description: 'Change this value to override the default onboarding config file name.',
@@ -540,7 +551,7 @@ const options = [
540
551
  name: 'dockerSidecarImage',
541
552
  description: 'Change this value to override the default Renovate sidecar image.',
542
553
  type: 'string',
543
- default: 'ghcr.io/containerbase/sidecar:13.23.5',
554
+ default: 'ghcr.io/containerbase/sidecar:13.23.6',
544
555
  globalOnly: true,
545
556
  },
546
557
  {
@@ -1036,7 +1047,7 @@ const options = [
1036
1047
  },
1037
1048
  {
1038
1049
  name: 'useBaseBranchConfig',
1039
- description: 'Whether to read configuration from `baseBranches` instead of only the default branch.',
1050
+ description: 'Whether to read configuration from base branches instead of only the default branch.',
1040
1051
  type: 'string',
1041
1052
  allowedValues: ['merge', 'none'],
1042
1053
  default: 'none',