renovate 42.92.6 → 42.92.7

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "renovate",
3
3
  "description": "Automated dependency updates. Flexible so you don't need to be.",
4
- "version": "42.92.6",
4
+ "version": "42.92.7",
5
5
  "type": "commonjs",
6
6
  "bin": {
7
7
  "renovate": "dist/renovate.js",
@@ -320,7 +320,7 @@
320
320
  "clean-cache": "node tools/clean-cache.mjs",
321
321
  "compile:ts": "rolldown -c",
322
322
  "config-validator": "tsx lib/config-validator.ts",
323
- "create-json-schema": "tsx tools/generate-schema.ts && prettier --write --cache 'renovate-schema.json' renovate-global-schema.json",
323
+ "create-json-schema": "tsx tools/generate-schema.ts && prettier --write --cache 'renovate-schema.json' renovate-inherited-schema.json renovate-global-schema.json",
324
324
  "debug": "tsx --inspect-brk lib/renovate.ts",
325
325
  "doc-fix": "run-s markdown-lint-fix prettier-fix",
326
326
  "doc-fix-everything": "run-s doc-fix doc-fence-check lint-documentation",
@@ -1,7 +1,7 @@
1
1
  {
2
- "title": "JSON schema for Renovate 42.92.6 config files (https://renovatebot.com/)",
2
+ "title": "JSON schema for Renovate 42.92.7 config files (https://renovatebot.com/)",
3
3
  "$schema": "http://json-schema.org/draft-07/schema#",
4
- "x-renovate-version": "42.92.6",
4
+ "x-renovate-version": "42.92.7",
5
5
  "allowComments": true,
6
6
  "type": "object",
7
7
  "properties": {
@@ -33,27 +33,27 @@
33
33
  }
34
34
  },
35
35
  "allowCustomCrateRegistries": {
36
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nSet this to `true` to allow custom crate registries.",
36
+ "description": "Set this to `true` to allow custom crate registries.",
37
37
  "type": "boolean",
38
38
  "default": false
39
39
  },
40
40
  "allowPlugins": {
41
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nSet this to `true` if repositories are allowed to run install plugins.",
41
+ "description": "Set this to `true` if repositories are allowed to run install plugins.",
42
42
  "type": "boolean",
43
43
  "default": false
44
44
  },
45
45
  "allowScripts": {
46
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nSet this to `true` if repositories are allowed to run install scripts.",
46
+ "description": "Set this to `true` if repositories are allowed to run install scripts.",
47
47
  "type": "boolean",
48
48
  "default": false
49
49
  },
50
50
  "allowShellExecutorForPostUpgradeCommands": {
51
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nWhether to run commands for `postUpgradeTasks` inside a shell. This has security implications, as it means that they can call out to other commands or access shell variables. It is difficult to craft an `allowedCommands` regex to restrict this.",
51
+ "description": "Whether to run commands for `postUpgradeTasks` inside a shell. This has security implications, as it means that they can call out to other commands or access shell variables. It is difficult to craft an `allowedCommands` regex to restrict this.",
52
52
  "type": "boolean",
53
53
  "default": true
54
54
  },
55
55
  "allowedCommands": {
56
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nA list of regular expressions that decide which commands are allowed in post-upgrade tasks.",
56
+ "description": "A list of regular expressions that decide which commands are allowed in post-upgrade tasks.",
57
57
  "type": "array",
58
58
  "items": {
59
59
  "type": "string"
@@ -61,7 +61,7 @@
61
61
  "default": []
62
62
  },
63
63
  "allowedEnv": {
64
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nList of allowed patterns for environment variable names in repository env config.",
64
+ "description": "List of allowed patterns for environment variable names in repository env config.",
65
65
  "type": "array",
66
66
  "items": {
67
67
  "type": "string"
@@ -69,7 +69,7 @@
69
69
  "default": []
70
70
  },
71
71
  "allowedHeaders": {
72
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nList of allowed patterns for header names in repository hostRules config.",
72
+ "description": "List of allowed patterns for header names in repository hostRules config.",
73
73
  "type": "array",
74
74
  "items": {
75
75
  "type": "string"
@@ -79,7 +79,7 @@
79
79
  ]
80
80
  },
81
81
  "allowedUnsafeExecutions": {
82
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nList of possibly unsafe executions which are permitted to run. This enables global control over any implicit commands\n which are run as part of a renovate run. This is similar to `allowedCommands` but is specifically used to control executions\n which run automatically, and are not explicitly added in `postUpgradeTasks`",
82
+ "description": "List of possibly unsafe executions which are permitted to run. This enables global control over any implicit commands\n which are run as part of a renovate run. This is similar to `allowedCommands` but is specifically used to control executions\n which run automatically, and are not explicitly added in `postUpgradeTasks`",
83
83
  "type": "array",
84
84
  "items": {
85
85
  "type": "string",
@@ -338,12 +338,12 @@
338
338
  "default": true
339
339
  },
340
340
  "autodiscover": {
341
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nAutodiscover all repositories.",
341
+ "description": "Autodiscover all repositories.",
342
342
  "type": "boolean",
343
343
  "default": false
344
344
  },
345
345
  "autodiscoverFilter": {
346
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nFilter the list of autodiscovered repositories.",
346
+ "description": "Filter the list of autodiscovered repositories.",
347
347
  "oneOf": [
348
348
  {
349
349
  "type": "array",
@@ -362,7 +362,7 @@
362
362
  ]
363
363
  },
364
364
  "autodiscoverNamespaces": {
365
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nFilter the list of autodiscovered repositories by namespaces.",
365
+ "description": "Filter the list of autodiscovered repositories by namespaces.",
366
366
  "type": [
367
367
  "array",
368
368
  "null"
@@ -373,7 +373,7 @@
373
373
  "default": null
374
374
  },
375
375
  "autodiscoverProjects": {
376
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nFilter the list of autodiscovered repositories by project names.",
376
+ "description": "Filter the list of autodiscovered repositories by project names.",
377
377
  "type": [
378
378
  "array",
379
379
  "null"
@@ -384,7 +384,7 @@
384
384
  "default": null
385
385
  },
386
386
  "autodiscoverRepoOrder": {
387
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nThe order method for autodiscover server side repository search.",
387
+ "description": "The order method for autodiscover server side repository search.",
388
388
  "type": [
389
389
  "string",
390
390
  "null"
@@ -396,7 +396,7 @@
396
396
  "default": null
397
397
  },
398
398
  "autodiscoverRepoSort": {
399
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nThe sort method for autodiscover server side repository search.",
399
+ "description": "The sort method for autodiscover server side repository search.",
400
400
  "type": [
401
401
  "string",
402
402
  "null"
@@ -413,7 +413,7 @@
413
413
  "default": null
414
414
  },
415
415
  "autodiscoverTopics": {
416
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nFilter the list of autodiscovered repositories by topics.",
416
+ "description": "Filter the list of autodiscovered repositories by topics.",
417
417
  "type": [
418
418
  "array",
419
419
  "null"
@@ -541,7 +541,7 @@
541
541
  }
542
542
  },
543
543
  "baseDir": {
544
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nThe base directory for Renovate to store local files, including repository files and cache. If left empty, Renovate will create its own temporary directory to use.",
544
+ "description": "The base directory for Renovate to store local files, including repository files and cache. If left empty, Renovate will create its own temporary directory to use.",
545
545
  "type": "string"
546
546
  },
547
547
  "batect": {
@@ -883,7 +883,7 @@
883
883
  }
884
884
  },
885
885
  "binarySource": {
886
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nControls how third-party tools like npm or Gradle are called: directly, via Docker sidecar containers, or via dynamic install.",
886
+ "description": "Controls how third-party tools like npm or Gradle are called: directly, via Docker sidecar containers, or via dynamic install.",
887
887
  "type": "string",
888
888
  "enum": [
889
889
  "global",
@@ -1375,21 +1375,21 @@
1375
1375
  }
1376
1376
  },
1377
1377
  "cacheDir": {
1378
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nThe directory where Renovate stores its cache. If left empty, Renovate creates a subdirectory within the `baseDir`.",
1378
+ "description": "The directory where Renovate stores its cache. If left empty, Renovate creates a subdirectory within the `baseDir`.",
1379
1379
  "type": "string"
1380
1380
  },
1381
1381
  "cacheHardTtlMinutes": {
1382
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nMaximum duration in minutes to keep datasource cache entries.",
1382
+ "description": "Maximum duration in minutes to keep datasource cache entries.",
1383
1383
  "type": "integer",
1384
1384
  "default": 10080
1385
1385
  },
1386
1386
  "cachePrivatePackages": {
1387
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nCache private packages in the datasource cache. This is useful for self-hosted setups",
1387
+ "description": "Cache private packages in the datasource cache. This is useful for self-hosted setups",
1388
1388
  "type": "boolean",
1389
1389
  "default": false
1390
1390
  },
1391
1391
  "cacheTtlOverride": {
1392
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nAn object that contains cache namespace TTL override values.",
1392
+ "description": "An object that contains cache namespace TTL override values.",
1393
1393
  "type": "object",
1394
1394
  "default": {},
1395
1395
  "$ref": "#"
@@ -1554,7 +1554,7 @@
1554
1554
  }
1555
1555
  },
1556
1556
  "checkedBranches": {
1557
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nA list of branch names to mark for creation or rebasing as if it was selected in the Dependency Dashboard issue.",
1557
+ "description": "A list of branch names to mark for creation or rebasing as if it was selected in the Dependency Dashboard issue.",
1558
1558
  "type": "array",
1559
1559
  "items": {
1560
1560
  "type": "string"
@@ -1921,7 +1921,7 @@
1921
1921
  "default": false
1922
1922
  },
1923
1923
  "configValidationError": {
1924
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nIf enabled, config validation errors will be reported as errors instead of warnings, and Renovate will exit with a non-zero exit code.",
1924
+ "description": "If enabled, config validation errors will be reported as errors instead of warnings, and Renovate will exit with a non-zero exit code.",
1925
1925
  "type": "boolean",
1926
1926
  "default": false
1927
1927
  },
@@ -1948,7 +1948,7 @@
1948
1948
  "default": "none"
1949
1949
  },
1950
1950
  "containerbaseDir": {
1951
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nThe directory where Renovate stores its containerbase cache. If left empty, Renovate creates a subdirectory within the `cacheDir`.",
1951
+ "description": "The directory where Renovate stores its containerbase cache. If left empty, Renovate creates a subdirectory within the `cacheDir`.",
1952
1952
  "type": "string"
1953
1953
  },
1954
1954
  "copier": {
@@ -2215,7 +2215,7 @@
2215
2215
  }
2216
2216
  },
2217
2217
  "customEnvVariables": {
2218
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nCustom environment variables for child processes and sidecar Docker containers.",
2218
+ "description": "Custom environment variables for child processes and sidecar Docker containers.",
2219
2219
  "type": "object",
2220
2220
  "default": {},
2221
2221
  "$ref": "#"
@@ -2370,12 +2370,12 @@
2370
2370
  "default": null
2371
2371
  },
2372
2372
  "deleteAdditionalConfigFile": {
2373
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nIf set to `true`, Renovate tries to delete the additional self-hosted config file after reading it.",
2373
+ "description": "If set to `true`, Renovate tries to delete the additional self-hosted config file after reading it.",
2374
2374
  "type": "boolean",
2375
2375
  "default": false
2376
2376
  },
2377
2377
  "deleteConfigFile": {
2378
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nIf set to `true`, Renovate tries to delete the self-hosted config file after reading it.",
2378
+ "description": "If set to `true`, Renovate tries to delete the self-hosted config file after reading it.",
2379
2379
  "type": "boolean",
2380
2380
  "default": false
2381
2381
  },
@@ -2511,12 +2511,12 @@
2511
2511
  ]
2512
2512
  },
2513
2513
  "detectGlobalManagerConfig": {
2514
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nIf `true`, Renovate tries to detect global manager configuration from the file system.",
2514
+ "description": "If `true`, Renovate tries to detect global manager configuration from the file system.",
2515
2515
  "type": "boolean",
2516
2516
  "default": false
2517
2517
  },
2518
2518
  "detectHostRulesFromEnv": {
2519
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nIf `true`, Renovate tries to detect host rules from environment variables.",
2519
+ "description": "If `true`, Renovate tries to detect host rules from environment variables.",
2520
2520
  "type": "boolean",
2521
2521
  "default": false
2522
2522
  },
@@ -2720,26 +2720,26 @@
2720
2720
  }
2721
2721
  },
2722
2722
  "dockerChildPrefix": {
2723
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nChange this value to add a prefix to the Renovate Docker sidecar container names and labels.",
2723
+ "description": "Change this value to add a prefix to the Renovate Docker sidecar container names and labels.",
2724
2724
  "type": "string",
2725
2725
  "default": "renovate_"
2726
2726
  },
2727
2727
  "dockerCliOptions": {
2728
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nPass CLI flags to `docker run` command when `binarySource=docker`.",
2728
+ "description": "Pass CLI flags to `docker run` command when `binarySource=docker`.",
2729
2729
  "type": "string"
2730
2730
  },
2731
2731
  "dockerMaxPages": {
2732
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nBy default, Renovate fetches up to 20 pages of Docker tags from registries. But you can set your own limit with this config option.",
2732
+ "description": "By default, Renovate fetches up to 20 pages of Docker tags from registries. But you can set your own limit with this config option.",
2733
2733
  "type": "integer",
2734
2734
  "default": 20
2735
2735
  },
2736
2736
  "dockerSidecarImage": {
2737
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nChange this value to override the default Renovate sidecar image.",
2737
+ "description": "Change this value to override the default Renovate sidecar image.",
2738
2738
  "type": "string",
2739
2739
  "default": "ghcr.io/containerbase/sidecar:13.26.6"
2740
2740
  },
2741
2741
  "dockerUser": {
2742
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nSet the `UID` and `GID` for Docker-based binaries if you use `binarySource=docker`.",
2742
+ "description": "Set the `UID` and `GID` for Docker-based binaries if you use `binarySource=docker`.",
2743
2743
  "type": "string"
2744
2744
  },
2745
2745
  "dockerfile": {
@@ -2855,7 +2855,7 @@
2855
2855
  }
2856
2856
  },
2857
2857
  "dryRun": {
2858
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nIf enabled, perform a dry run by logging messages instead of creating/updating/deleting branches and PRs.",
2858
+ "description": "If enabled, perform a dry run by logging messages instead of creating/updating/deleting branches and PRs.",
2859
2859
  "type": [
2860
2860
  "string",
2861
2861
  "null"
@@ -2889,11 +2889,11 @@
2889
2889
  "$ref": "#"
2890
2890
  },
2891
2891
  "encryptedWarning": {
2892
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nWarning text to use if encrypted config is found.",
2892
+ "description": "Warning text to use if encrypted config is found.",
2893
2893
  "type": "string"
2894
2894
  },
2895
2895
  "endpoint": {
2896
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nCustom endpoint to use.",
2896
+ "description": "Custom endpoint to use.",
2897
2897
  "type": [
2898
2898
  "string",
2899
2899
  "null"
@@ -2915,7 +2915,7 @@
2915
2915
  "default": []
2916
2916
  },
2917
2917
  "executionTimeout": {
2918
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nDefault execution timeout in minutes for child processes Renovate creates.",
2918
+ "description": "Default execution timeout in minutes for child processes Renovate creates.",
2919
2919
  "type": "integer",
2920
2920
  "default": 15
2921
2921
  },
@@ -2925,7 +2925,7 @@
2925
2925
  "default": false
2926
2926
  },
2927
2927
  "exposeAllEnv": {
2928
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nSet this to `true` to allow passing of all environment variables to package managers.",
2928
+ "description": "Set this to `true` to allow passing of all environment variables to package managers.",
2929
2929
  "type": "boolean",
2930
2930
  "default": false
2931
2931
  },
@@ -3074,17 +3074,17 @@
3074
3074
  "type": "string"
3075
3075
  },
3076
3076
  "force": {
3077
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nAny configuration set in this object will force override existing settings.",
3077
+ "description": "Any configuration set in this object will force override existing settings.",
3078
3078
  "type": "object",
3079
3079
  "$ref": "#"
3080
3080
  },
3081
3081
  "forceCli": {
3082
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nDecides if CLI configuration options are moved to the `force` config section.",
3082
+ "description": "Decides if CLI configuration options are moved to the `force` config section.",
3083
3083
  "type": "boolean",
3084
3084
  "default": true
3085
3085
  },
3086
3086
  "forkCreation": {
3087
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nWhether to create forks as needed at runtime when running in \"fork mode\".",
3087
+ "description": "Whether to create forks as needed at runtime when running in \"fork mode\".",
3088
3088
  "type": "boolean",
3089
3089
  "default": true
3090
3090
  },
@@ -3094,7 +3094,7 @@
3094
3094
  "default": false
3095
3095
  },
3096
3096
  "forkOrg": {
3097
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nThe preferred organization to create or find forked repositories, when in fork mode.",
3097
+ "description": "The preferred organization to create or find forked repositories, when in fork mode.",
3098
3098
  "type": "string"
3099
3099
  },
3100
3100
  "forkProcessing": {
@@ -3108,7 +3108,7 @@
3108
3108
  "default": "auto"
3109
3109
  },
3110
3110
  "forkToken": {
3111
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nSet a personal access token here to enable \"fork mode\".",
3111
+ "description": "Set a personal access token here to enable \"fork mode\".",
3112
3112
  "type": "string"
3113
3113
  },
3114
3114
  "fvm": {
@@ -3238,7 +3238,7 @@
3238
3238
  "default": false
3239
3239
  },
3240
3240
  "gitNoVerify": {
3241
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nWhich Git commands will be run with the `--no-verify` option.",
3241
+ "description": "Which Git commands will be run with the `--no-verify` option.",
3242
3242
  "oneOf": [
3243
3243
  {
3244
3244
  "type": "array",
@@ -3264,20 +3264,20 @@
3264
3264
  ]
3265
3265
  },
3266
3266
  "gitPrivateKey": {
3267
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nPGP key to use for signing Git commits.",
3267
+ "description": "PGP key to use for signing Git commits.",
3268
3268
  "type": "string"
3269
3269
  },
3270
3270
  "gitPrivateKeyPassphrase": {
3271
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nPassphrase for the `gitPrivateKey`",
3271
+ "description": "Passphrase for the `gitPrivateKey`",
3272
3272
  "type": "string"
3273
3273
  },
3274
3274
  "gitTimeout": {
3275
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nConfigure the timeout with a number of milliseconds to wait for a Git task.",
3275
+ "description": "Configure the timeout with a number of milliseconds to wait for a Git task.",
3276
3276
  "type": "integer",
3277
3277
  "default": 0
3278
3278
  },
3279
3279
  "gitUrl": {
3280
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nOverrides the default resolution for Git remote, e.g. to switch GitLab from HTTPS to SSH-based.",
3280
+ "description": "Overrides the default resolution for Git remote, e.g. to switch GitLab from HTTPS to SSH-based.",
3281
3281
  "type": "string",
3282
3282
  "enum": [
3283
3283
  "default",
@@ -3341,7 +3341,7 @@
3341
3341
  }
3342
3342
  },
3343
3343
  "githubTokenWarn": {
3344
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nDisplay warnings about GitHub token not being set.",
3344
+ "description": "Display warnings about GitHub token not being set.",
3345
3345
  "type": "boolean",
3346
3346
  "default": true
3347
3347
  },
@@ -3557,7 +3557,7 @@
3557
3557
  }
3558
3558
  },
3559
3559
  "globalExtends": {
3560
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nConfiguration presets to use or extend for a self-hosted config.",
3560
+ "description": "Configuration presets to use or extend for a self-hosted config.",
3561
3561
  "type": "array",
3562
3562
  "items": {
3563
3563
  "type": "string"
@@ -4424,7 +4424,7 @@
4424
4424
  }
4425
4425
  },
4426
4426
  "httpCacheTtlDays": {
4427
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nMaximum duration in days to keep HTTP cache entries.",
4427
+ "description": "Maximum duration in days to keep HTTP cache entries.",
4428
4428
  "type": "integer",
4429
4429
  "default": 90
4430
4430
  },
@@ -4457,7 +4457,7 @@
4457
4457
  "default": false
4458
4458
  },
4459
4459
  "ignorePrAuthor": {
4460
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nSet to `true` to fetch the entire list of PRs instead of only those authored by the Renovate user.",
4460
+ "description": "Set to `true` to fetch the entire list of PRs instead of only those authored by the Renovate user.",
4461
4461
  "type": "boolean",
4462
4462
  "default": false
4463
4463
  },
@@ -4498,7 +4498,7 @@
4498
4498
  "default": true
4499
4499
  },
4500
4500
  "includeMirrors": {
4501
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nWhether to process repositories that are mirrors. By default, repositories that are mirrors are skipped.",
4501
+ "description": "Whether to process repositories that are mirrors. By default, repositories that are mirrors are skipped.",
4502
4502
  "type": "boolean",
4503
4503
  "default": false
4504
4504
  },
@@ -4511,22 +4511,22 @@
4511
4511
  "default": []
4512
4512
  },
4513
4513
  "inheritConfig": {
4514
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nIf `true`, Renovate will inherit configuration from the `inheritConfigFileName` file in `inheritConfigRepoName`.",
4514
+ "description": "If `true`, Renovate will inherit configuration from the `inheritConfigFileName` file in `inheritConfigRepoName`.",
4515
4515
  "type": "boolean",
4516
4516
  "default": false
4517
4517
  },
4518
4518
  "inheritConfigFileName": {
4519
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nRenovate will look for this config file name in the `inheritConfigRepoName`.",
4519
+ "description": "Renovate will look for this config file name in the `inheritConfigRepoName`.",
4520
4520
  "type": "string",
4521
4521
  "default": "org-inherited-config.json"
4522
4522
  },
4523
4523
  "inheritConfigRepoName": {
4524
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nRenovate will look in this repo for the `inheritConfigFileName`.",
4524
+ "description": "Renovate will look in this repo for the `inheritConfigFileName`.",
4525
4525
  "type": "string",
4526
4526
  "default": "{{parentOrg}}/renovate-config"
4527
4527
  },
4528
4528
  "inheritConfigStrict": {
4529
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nIf `true`, any `inheritedConfig` fetch error will result in an aborted run.",
4529
+ "description": "If `true`, any `inheritedConfig` fetch error will result in an aborted run.",
4530
4530
  "type": "boolean",
4531
4531
  "default": false
4532
4532
  },
@@ -4934,7 +4934,7 @@
4934
4934
  }
4935
4935
  },
4936
4936
  "logContext": {
4937
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nAdd a global or per-repo log context to each log entry.",
4937
+ "description": "Add a global or per-repo log context to each log entry.",
4938
4938
  "type": [
4939
4939
  "string",
4940
4940
  "null"
@@ -5136,7 +5136,7 @@
5136
5136
  "default": 500
5137
5137
  },
5138
5138
  "mergeConfidenceDatasources": {
5139
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nIf set, Renovate will query the merge-confidence JSON API only for datasources that are part of this list.",
5139
+ "description": "If set, Renovate will query the merge-confidence JSON API only for datasources that are part of this list.",
5140
5140
  "type": "array",
5141
5141
  "items": {
5142
5142
  "type": "string",
@@ -5161,7 +5161,7 @@
5161
5161
  ]
5162
5162
  },
5163
5163
  "mergeConfidenceEndpoint": {
5164
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nIf set, Renovate will query this API for Merge Confidence data.",
5164
+ "description": "If set, Renovate will query this API for Merge Confidence data.",
5165
5165
  "type": "string",
5166
5166
  "default": "https://developer.mend.io/"
5167
5167
  },
@@ -5219,7 +5219,7 @@
5219
5219
  }
5220
5220
  },
5221
5221
  "migratePresets": {
5222
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nDefine presets here which have been removed or renamed and should be migrated automatically.",
5222
+ "description": "Define presets here which have been removed or renamed and should be migrated automatically.",
5223
5223
  "type": "object",
5224
5224
  "default": {},
5225
5225
  "additionalProperties": {
@@ -5818,7 +5818,7 @@
5818
5818
  "type": "boolean"
5819
5819
  },
5820
5820
  "onboardingAutoCloseAge": {
5821
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nMaximum number of days after which Renovate will stop trying to onboard the repository, and will close any existing onboarding PRs",
5821
+ "description": "Maximum number of days after which Renovate will stop trying to onboard the repository, and will close any existing onboarding PRs",
5822
5822
  "type": [
5823
5823
  "integer",
5824
5824
  "null"
@@ -5867,12 +5867,12 @@
5867
5867
  "default": "Configure Renovate"
5868
5868
  },
5869
5869
  "onboardingRebaseCheckbox": {
5870
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nSet to enable rebase/retry markdown checkbox for onboarding PRs.",
5870
+ "description": "Set to enable rebase/retry markdown checkbox for onboarding PRs.",
5871
5871
  "type": "boolean",
5872
5872
  "default": false
5873
5873
  },
5874
5874
  "optimizeForDisabled": {
5875
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nSet to `true` to perform a check for disabled config prior to cloning.",
5875
+ "description": "Set to `true` to perform a check for disabled config prior to cloning.",
5876
5876
  "type": "boolean",
5877
5877
  "default": false
5878
5878
  },
@@ -6238,7 +6238,7 @@
6238
6238
  }
6239
6239
  },
6240
6240
  "password": {
6241
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nPassword for authentication.",
6241
+ "description": "Password for authentication.",
6242
6242
  "type": "string"
6243
6243
  },
6244
6244
  "patch": {
@@ -6381,7 +6381,7 @@
6381
6381
  }
6382
6382
  },
6383
6383
  "persistRepoData": {
6384
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nIf set to `true`: keep repository data between runs instead of deleting the data.",
6384
+ "description": "If set to `true`: keep repository data between runs instead of deleting the data.",
6385
6385
  "type": "boolean",
6386
6386
  "default": false
6387
6387
  },
@@ -6747,7 +6747,7 @@
6747
6747
  }
6748
6748
  },
6749
6749
  "platform": {
6750
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nPlatform type of repository.",
6750
+ "description": "Platform type of repository.",
6751
6751
  "type": "string",
6752
6752
  "enum": [
6753
6753
  "azure",
@@ -6993,7 +6993,7 @@
6993
6993
  "default": "{{{header}}}{{{table}}}{{{warnings}}}{{{notes}}}{{{changelogs}}}{{{configDescription}}}{{{controls}}}{{{footer}}}"
6994
6994
  },
6995
6995
  "prCommitsPerRunLimit": {
6996
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nSet the maximum number of commits per Renovate run. By default there is no limit.",
6996
+ "description": "Set the maximum number of commits per Renovate run. By default there is no limit.",
6997
6997
  "type": "integer",
6998
6998
  "default": 0
6999
6999
  },
@@ -7104,7 +7104,7 @@
7104
7104
  }
7105
7105
  },
7106
7106
  "presetCachePersistence": {
7107
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nCache resolved presets in package cache.",
7107
+ "description": "Cache resolved presets in package cache.",
7108
7108
  "type": "boolean",
7109
7109
  "default": false
7110
7110
  },
@@ -7114,23 +7114,23 @@
7114
7114
  "default": false
7115
7115
  },
7116
7116
  "privateKey": {
7117
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nServer-side private key.",
7117
+ "description": "Server-side private key.",
7118
7118
  "type": "string"
7119
7119
  },
7120
7120
  "privateKeyOld": {
7121
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nSecondary or old private key to try.",
7121
+ "description": "Secondary or old private key to try.",
7122
7122
  "type": "string"
7123
7123
  },
7124
7124
  "privateKeyPath": {
7125
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nPath to the Server-side private key.",
7125
+ "description": "Path to the Server-side private key.",
7126
7126
  "type": "string"
7127
7127
  },
7128
7128
  "privateKeyPathOld": {
7129
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nPath to the Server-side old private key.",
7129
+ "description": "Path to the Server-side old private key.",
7130
7130
  "type": "string"
7131
7131
  },
7132
7132
  "processEnv": {
7133
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nEnvironment variables to be used in global config only.",
7133
+ "description": "Environment variables to be used in global config only.",
7134
7134
  "type": "object",
7135
7135
  "default": {},
7136
7136
  "additionalProperties": {
@@ -7139,7 +7139,7 @@
7139
7139
  "$ref": "#"
7140
7140
  },
7141
7141
  "productLinks": {
7142
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nLinks which are used in PRs, issues and comments.",
7142
+ "description": "Links which are used in PRs, issues and comments.",
7143
7143
  "type": "object",
7144
7144
  "default": {
7145
7145
  "documentation": "https://docs.renovatebot.com/",
@@ -7420,11 +7420,11 @@
7420
7420
  "default": "auto"
7421
7421
  },
7422
7422
  "redisPrefix": {
7423
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nKey prefix for redis cache entries.",
7423
+ "description": "Key prefix for redis cache entries.",
7424
7424
  "type": "string"
7425
7425
  },
7426
7426
  "redisUrl": {
7427
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nIf set, this Redis URL will be used for caching instead of the file system.",
7427
+ "description": "If set, this Redis URL will be used for caching instead of the file system.",
7428
7428
  "type": "string"
7429
7429
  },
7430
7430
  "regex": {
@@ -7568,7 +7568,7 @@
7568
7568
  "default": "replace"
7569
7569
  },
7570
7570
  "reportPath": {
7571
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nPath to where the file should be written. In case of `s3` this has to be a full S3 URI.",
7571
+ "description": "Path to where the file should be written. In case of `s3` this has to be a full S3 URI.",
7572
7572
  "type": [
7573
7573
  "string",
7574
7574
  "null"
@@ -7576,7 +7576,7 @@
7576
7576
  "default": null
7577
7577
  },
7578
7578
  "reportType": {
7579
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nSet how, or if, reports should be generated.",
7579
+ "description": "Set how, or if, reports should be generated.",
7580
7580
  "type": [
7581
7581
  "string",
7582
7582
  "null"
@@ -7589,14 +7589,14 @@
7589
7589
  "default": null
7590
7590
  },
7591
7591
  "repositories": {
7592
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nList of Repositories.",
7592
+ "description": "List of Repositories.",
7593
7593
  "type": "array",
7594
7594
  "items": {
7595
7595
  "type": "string"
7596
7596
  }
7597
7597
  },
7598
7598
  "repositoryCache": {
7599
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nThis option decides if Renovate uses a JSON cache to speed up extractions.",
7599
+ "description": "This option decides if Renovate uses a JSON cache to speed up extractions.",
7600
7600
  "type": "string",
7601
7601
  "enum": [
7602
7602
  "disabled",
@@ -7606,7 +7606,7 @@
7606
7606
  "default": "disabled"
7607
7607
  },
7608
7608
  "repositoryCacheType": {
7609
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nSet the type of renovate repository cache if `repositoryCache` is enabled.",
7609
+ "description": "Set the type of renovate repository cache if `repositoryCache` is enabled.",
7610
7610
  "type": "string",
7611
7611
  "default": "local"
7612
7612
  },
@@ -7798,11 +7798,11 @@
7798
7798
  }
7799
7799
  },
7800
7800
  "s3Endpoint": {
7801
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nIf set, Renovate will use this string as the `endpoint` when creating the AWS S3 client instance.",
7801
+ "description": "If set, Renovate will use this string as the `endpoint` when creating the AWS S3 client instance.",
7802
7802
  "type": "string"
7803
7803
  },
7804
7804
  "s3PathStyle": {
7805
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nIf set, Renovate will enable `forcePathStyle` when creating the AWS S3 client instance.",
7805
+ "description": "If set, Renovate will enable `forcePathStyle` when creating the AWS S3 client instance.",
7806
7806
  "type": "boolean",
7807
7807
  "default": false
7808
7808
  },
@@ -7934,7 +7934,7 @@
7934
7934
  ]
7935
7935
  },
7936
7936
  "secrets": {
7937
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nObject which holds secret name/value pairs.",
7937
+ "description": "Object which holds secret name/value pairs.",
7938
7938
  "type": "object",
7939
7939
  "default": {},
7940
7940
  "additionalProperties": {
@@ -8521,7 +8521,7 @@
8521
8521
  "type": "string"
8522
8522
  },
8523
8523
  "token": {
8524
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nRepository Auth Token.",
8524
+ "description": "Repository Auth Token.",
8525
8525
  "type": "string"
8526
8526
  },
8527
8527
  "travis": {
@@ -8635,7 +8635,7 @@
8635
8635
  }
8636
8636
  },
8637
8637
  "unicodeEmoji": {
8638
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nEnable or disable Unicode emoji.",
8638
+ "description": "Enable or disable Unicode emoji.",
8639
8639
  "type": "boolean",
8640
8640
  "default": true
8641
8641
  },
@@ -8717,12 +8717,12 @@
8717
8717
  "default": "none"
8718
8718
  },
8719
8719
  "useCloudMetadataServices": {
8720
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nIf `false`, Renovate does not try to access cloud metadata services.",
8720
+ "description": "If `false`, Renovate does not try to access cloud metadata services.",
8721
8721
  "type": "boolean",
8722
8722
  "default": true
8723
8723
  },
8724
8724
  "userAgent": {
8725
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nIf set to any string, Renovate will use this as the `user-agent` it sends with HTTP requests.",
8725
+ "description": "If set to any string, Renovate will use this as the `user-agent` it sends with HTTP requests.",
8726
8726
  "type": [
8727
8727
  "string",
8728
8728
  "null"
@@ -8741,11 +8741,11 @@
8741
8741
  }
8742
8742
  },
8743
8743
  "username": {
8744
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nUsername for authentication.",
8744
+ "description": "Username for authentication.",
8745
8745
  "type": "string"
8746
8746
  },
8747
8747
  "variables": {
8748
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nObject which holds variable name/value pairs.",
8748
+ "description": "Object which holds variable name/value pairs.",
8749
8749
  "type": "object",
8750
8750
  "default": {},
8751
8751
  "additionalProperties": {
@@ -9036,7 +9036,7 @@
9036
9036
  }
9037
9037
  },
9038
9038
  "writeDiscoveredRepos": {
9039
- "description": "Deprecated: This configuration option is only intended to be used with 'global' configuration when self-hosting, not used in a repository configuration file. Renovate likely won't use the configuration, and these fields will be removed from the repository configuration documentation in Renovate v43 (https://github.com/renovatebot/renovate/issues/38728)\n\nWrites discovered repositories to a JSON file and then exit.",
9039
+ "description": "Writes discovered repositories to a JSON file and then exit.",
9040
9040
  "type": "string"
9041
9041
  }
9042
9042
  }