|
473 | 473 | "type": "string", |
474 | 474 | "default": "to {{#if isPinDigest}}{{{newDigestShort}}}{{else}}{{#if isMajor}}{{prettyNewMajor}}{{else}}{{#if isSingleVersion}}{{prettyNewVersion}}{{else}}{{#if newValue}}{{{newValue}}}{{else}}{{{newDigestShort}}}{{/if}}{{/if}}{{/if}}{{/if}}" |
475 | 475 | }, |
| 476 | + "commitMessageLowerCase": { |
| 477 | + "description": "Lowercase PR- and commit titles.", |
| 478 | + "type": "string", |
| 479 | + "enum": [ |
| 480 | + "auto", |
| 481 | + "never" |
| 482 | + ], |
| 483 | + "default": "auto" |
| 484 | + }, |
476 | 485 | "commitMessagePrefix": { |
477 | 486 | "description": "Prefix to add to start of commit messages and PR titles. Uses a semantic prefix if `semanticCommits` is enabled.", |
478 | 487 | "type": "string" |
|
552 | 561 | "description": "The directory where Renovate stores its containerbase cache. If left empty, Renovate creates a subdirectory within the `cacheDir`.", |
553 | 562 | "type": "string" |
554 | 563 | }, |
| 564 | + "cpanfile": { |
| 565 | + "description": "Configuration object for the cpanfile manager", |
| 566 | + "type": "object", |
| 567 | + "default": { |
| 568 | + "fileMatch": [ |
| 569 | + "(^|/)cpanfile$" |
| 570 | + ] |
| 571 | + }, |
| 572 | + "$ref": "#" |
| 573 | + }, |
555 | 574 | "customEnvVariables": { |
556 | 575 | "description": "Custom environment variables for child processes and sidecar Docker containers.", |
557 | 576 | "type": "object", |
|
598 | 617 | }, |
599 | 618 | "default": null |
600 | 619 | }, |
| 620 | + "dependencyDashboardOSVVulnerabilitySummary": { |
| 621 | + "description": "Control if the Dependency Dashboard issue lists CVEs supplied by [osv.dev](https://osv.dev).", |
| 622 | + "type": "string", |
| 623 | + "enum": [ |
| 624 | + "none", |
| 625 | + "all", |
| 626 | + "unresolved" |
| 627 | + ], |
| 628 | + "default": "none" |
| 629 | + }, |
601 | 630 | "dependencyDashboardTitle": { |
602 | 631 | "description": "Title for the Dependency Dashboard issue.", |
603 | 632 | "type": "string", |
|
685 | 714 | "type": "object", |
686 | 715 | "default": { |
687 | 716 | "fileMatch": [ |
688 | | - "(^|/|\\.)(Docker|Container)file$", |
689 | | - "(^|/)(Docker|Container)file[^/]*$" |
| 717 | + "(^|/|\\.)([Dd]ocker|[Cc]ontainer)file$", |
| 718 | + "(^|/)([Dd]ocker|[Cc]ontainer)file[^/]*$" |
690 | 719 | ] |
691 | 720 | }, |
692 | 721 | "$ref": "#" |
|
1023 | 1052 | "\\.gradle(\\.kts)?$", |
1024 | 1053 | "(^|/)gradle\\.properties$", |
1025 | 1054 | "(^|/)gradle/.+\\.toml$", |
| 1055 | + "(^|/)buildSrc/.+\\.kt$", |
1026 | 1056 | "\\.versions\\.toml$", |
1027 | 1057 | "(^|/)versions.props$", |
1028 | 1058 | "(^|/)versions.lock$" |
|
1162 | 1192 | { |
1163 | 1193 | "type": "object", |
1164 | 1194 | "properties": { |
| 1195 | + "description": { |
| 1196 | + "type": "string", |
| 1197 | + "description": "A custom description for this configuration object" |
| 1198 | + }, |
1165 | 1199 | "abortIgnoreStatusCodes": { |
1166 | 1200 | "description": "A list of HTTP status codes safe to ignore even when `abortOnError=true`.", |
1167 | 1201 | "type": "array", |
|
1702 | 1736 | { |
1703 | 1737 | "type": "object", |
1704 | 1738 | "properties": { |
| 1739 | + "description": { |
| 1740 | + "type": "string", |
| 1741 | + "description": "A custom description for this configuration object" |
| 1742 | + }, |
1705 | 1743 | "allowedVersions": { |
1706 | 1744 | "description": "A version range or regex pattern capturing allowed versions for dependencies.", |
1707 | 1745 | "type": "string" |
|
2070 | 2108 | "default": {}, |
2071 | 2109 | "$ref": "#" |
2072 | 2110 | }, |
| 2111 | + "pep621": { |
| 2112 | + "description": "Configuration object for the pep621 manager", |
| 2113 | + "type": "object", |
| 2114 | + "default": { |
| 2115 | + "fileMatch": [ |
| 2116 | + "(^|/)pyproject\\.toml$" |
| 2117 | + ] |
| 2118 | + }, |
| 2119 | + "$ref": "#" |
| 2120 | + }, |
2073 | 2121 | "persistRepoData": { |
2074 | 2122 | "description": "If set to `true`: keep repository data between runs instead of deleting the data.", |
2075 | 2123 | "type": "boolean", |
|
2168 | 2216 | "codecommit", |
2169 | 2217 | "gitea", |
2170 | 2218 | "github", |
2171 | | - "gitlab" |
| 2219 | + "gitlab", |
| 2220 | + "local" |
2172 | 2221 | ], |
2173 | 2222 | "default": "github" |
2174 | 2223 | }, |
|
2227 | 2276 | { |
2228 | 2277 | "type": "object", |
2229 | 2278 | "properties": { |
| 2279 | + "description": { |
| 2280 | + "type": "string", |
| 2281 | + "description": "A custom description for this configuration object" |
| 2282 | + }, |
2230 | 2283 | "commands": { |
2231 | 2284 | "description": "A list of post-upgrade commands that are executed before a commit is made by Renovate.", |
2232 | 2285 | "type": "array", |
|
2514 | 2567 | { |
2515 | 2568 | "type": "object", |
2516 | 2569 | "properties": { |
| 2570 | + "description": { |
| 2571 | + "type": "string", |
| 2572 | + "description": "A custom description for this configuration object" |
| 2573 | + }, |
2517 | 2574 | "autoReplaceStringTemplate": { |
2518 | 2575 | "description": "Optional `extractVersion` for extracted dependencies. Valid only within a `regexManagers` object.", |
2519 | 2576 | "type": "string" |
|
2801 | 2858 | "configErrorIssue", |
2802 | 2859 | "deprecationWarningIssues", |
2803 | 2860 | "lockFileErrors", |
| 2861 | + "missingCredentialsError", |
2804 | 2862 | "onboardingClose", |
2805 | 2863 | "prEditedNotification", |
2806 | 2864 | "prIgnoreNotification" |
|
2975 | 3033 | "versioning": { |
2976 | 3034 | "description": "Versioning to use for filtering and comparisons.", |
2977 | 3035 | "type": "string", |
2978 | | - "enum": [ |
2979 | | - "aws-machine-image", |
2980 | | - "azure-rest-api", |
2981 | | - "bazel-module", |
2982 | | - "cargo", |
2983 | | - "composer", |
2984 | | - "conan", |
2985 | | - "deb", |
2986 | | - "debian", |
2987 | | - "docker", |
2988 | | - "git", |
2989 | | - "go-mod-directive", |
2990 | | - "gradle", |
2991 | | - "hashicorp", |
2992 | | - "helm", |
2993 | | - "hermit", |
2994 | | - "hex", |
2995 | | - "ivy", |
2996 | | - "kubernetes-api", |
2997 | | - "loose", |
2998 | | - "maven", |
2999 | | - "nixpkgs", |
3000 | | - "node", |
3001 | | - "npm", |
3002 | | - "nuget", |
3003 | | - "pep440", |
3004 | | - "perl", |
3005 | | - "poetry", |
3006 | | - "python", |
3007 | | - "redhat", |
3008 | | - "regex", |
3009 | | - "rez", |
3010 | | - "ruby", |
3011 | | - "semver", |
3012 | | - "semver-coerced", |
3013 | | - "swift", |
3014 | | - "ubuntu" |
| 3036 | + "oneOf": [ |
| 3037 | + { |
| 3038 | + "enum": [ |
| 3039 | + "aws-machine-image", |
| 3040 | + "azure-rest-api", |
| 3041 | + "bazel-module", |
| 3042 | + "cargo", |
| 3043 | + "composer", |
| 3044 | + "conan", |
| 3045 | + "deb", |
| 3046 | + "debian", |
| 3047 | + "docker", |
| 3048 | + "git", |
| 3049 | + "go-mod-directive", |
| 3050 | + "gradle", |
| 3051 | + "hashicorp", |
| 3052 | + "helm", |
| 3053 | + "hermit", |
| 3054 | + "hex", |
| 3055 | + "ivy", |
| 3056 | + "kubernetes-api", |
| 3057 | + "loose", |
| 3058 | + "maven", |
| 3059 | + "nixpkgs", |
| 3060 | + "node", |
| 3061 | + "npm", |
| 3062 | + "nuget", |
| 3063 | + "pep440", |
| 3064 | + "perl", |
| 3065 | + "poetry", |
| 3066 | + "python", |
| 3067 | + "redhat", |
| 3068 | + "regex", |
| 3069 | + "rez", |
| 3070 | + "ruby", |
| 3071 | + "semver", |
| 3072 | + "semver-coerced", |
| 3073 | + "swift", |
| 3074 | + "ubuntu" |
| 3075 | + ] |
| 3076 | + }, |
| 3077 | + { |
| 3078 | + "type": "string", |
| 3079 | + "pattern": "^regex:" |
| 3080 | + } |
3015 | 3081 | ] |
3016 | 3082 | }, |
3017 | 3083 | "vulnerabilityAlerts": { |
|
0 commit comments