|
374 | 374 | }, |
375 | 375 | "$ref": "#" |
376 | 376 | }, |
| 377 | + "bitrise": { |
| 378 | + "description": "Configuration object for the bitrise manager", |
| 379 | + "type": "object", |
| 380 | + "default": { |
| 381 | + "fileMatch": [ |
| 382 | + "(^|/)bitrise\\.ya?ml$" |
| 383 | + ] |
| 384 | + }, |
| 385 | + "$ref": "#" |
| 386 | + }, |
377 | 387 | "branchConcurrentLimit": { |
378 | 388 | "description": "Limit to a maximum of x concurrent branches. 0 means no limit, `null` (default) inherits value from `prConcurrentLimit`.", |
379 | 389 | "type": "integer", |
|
970 | 980 | "dockerSidecarImage": { |
971 | 981 | "description": "Change this value to override the default Renovate sidecar image.", |
972 | 982 | "type": "string", |
973 | | - "default": "ghcr.io/containerbase/sidecar:10.15.6" |
| 983 | + "default": "ghcr.io/containerbase/sidecar:11.1.2" |
974 | 984 | }, |
975 | 985 | "dockerUser": { |
976 | 986 | "description": "Set the `UID` and `GID` for Docker-based binaries if you use `binarySource=docker`.", |
|
1831 | 1841 | "type": "string", |
1832 | 1842 | "default": null |
1833 | 1843 | }, |
1834 | | - "logFile": { |
1835 | | - "description": "Log file path.", |
1836 | | - "type": "string" |
1837 | | - }, |
1838 | | - "logFileLevel": { |
1839 | | - "description": "Set the log file log level.", |
1840 | | - "type": "string", |
1841 | | - "default": "debug" |
1842 | | - }, |
1843 | 1844 | "logLevelRemap": { |
1844 | 1845 | "description": "Remap log levels to different levels.", |
1845 | 1846 | "type": "array", |
|
1994 | 1995 | "type": "object", |
1995 | 1996 | "default": { |
1996 | 1997 | "fileMatch": [ |
1997 | | - "(^|/)\\.mise\\.toml$" |
| 1998 | + "(^|/)\\.?mise\\.toml$", |
| 1999 | + "(^|/)\\.?mise/config\\.toml$" |
1998 | 2000 | ] |
1999 | 2001 | }, |
2000 | 2002 | "$ref": "#" |
|
2136 | 2138 | }, |
2137 | 2139 | "onboardingNoDeps": { |
2138 | 2140 | "description": "Onboard the repository even if no dependencies are found.", |
2139 | | - "type": "boolean", |
2140 | | - "default": false |
| 2141 | + "type": "string", |
| 2142 | + "enum": [ |
| 2143 | + "auto", |
| 2144 | + "enabled", |
| 2145 | + "disabled" |
| 2146 | + ], |
| 2147 | + "default": "auto" |
2141 | 2148 | }, |
2142 | 2149 | "onboardingPrTitle": { |
2143 | 2150 | "description": "Change this value to override the default onboarding PR title.", |
|
2197 | 2204 | "type": "string" |
2198 | 2205 | }, |
2199 | 2206 | "changelogUrl": { |
2200 | | - "description": "If set, Renovate will use this URL to fetch changelogs for a matched dependency. Valid only within a `packageRules` object.", |
| 2207 | + "description": "Set a custom URL for the changelog. Renovate will put this URL in the PR body text.", |
2201 | 2208 | "type": "string" |
2202 | 2209 | }, |
2203 | | - "excludeDepNames": { |
2204 | | - "description": "Dep names to exclude. Valid only within a `packageRules` object.", |
2205 | | - "oneOf": [ |
2206 | | - { |
2207 | | - "type": "array", |
2208 | | - "items": { |
2209 | | - "type": "string" |
2210 | | - } |
2211 | | - }, |
2212 | | - { |
2213 | | - "type": "string" |
2214 | | - } |
2215 | | - ] |
2216 | | - }, |
2217 | | - "excludeDepPatterns": { |
2218 | | - "description": "Dep name patterns to exclude. Valid only within a `packageRules` object.", |
2219 | | - "oneOf": [ |
2220 | | - { |
2221 | | - "type": "array", |
2222 | | - "items": { |
2223 | | - "type": "string", |
2224 | | - "format": "regex" |
2225 | | - } |
2226 | | - }, |
2227 | | - { |
2228 | | - "type": "string", |
2229 | | - "format": "regex" |
2230 | | - } |
2231 | | - ] |
2232 | | - }, |
2233 | | - "excludeDepPrefixes": { |
2234 | | - "description": "Dep names prefixes to exclude. Valid only within a `packageRules` object.", |
2235 | | - "oneOf": [ |
2236 | | - { |
2237 | | - "type": "array", |
2238 | | - "items": { |
2239 | | - "type": "string" |
2240 | | - } |
2241 | | - }, |
2242 | | - { |
2243 | | - "type": "string" |
2244 | | - } |
2245 | | - ] |
2246 | | - }, |
2247 | | - "excludePackageNames": { |
2248 | | - "description": "Package names to exclude. Valid only within a `packageRules` object.", |
2249 | | - "oneOf": [ |
2250 | | - { |
2251 | | - "type": "array", |
2252 | | - "items": { |
2253 | | - "type": "string" |
2254 | | - } |
2255 | | - }, |
2256 | | - { |
2257 | | - "type": "string" |
2258 | | - } |
2259 | | - ] |
2260 | | - }, |
2261 | | - "excludePackagePatterns": { |
2262 | | - "description": "Package name patterns to exclude. Valid only within a `packageRules` object.", |
2263 | | - "oneOf": [ |
2264 | | - { |
2265 | | - "type": "array", |
2266 | | - "items": { |
2267 | | - "type": "string", |
2268 | | - "format": "regex" |
2269 | | - } |
2270 | | - }, |
2271 | | - { |
2272 | | - "type": "string", |
2273 | | - "format": "regex" |
2274 | | - } |
2275 | | - ] |
2276 | | - }, |
2277 | | - "excludePackagePrefixes": { |
2278 | | - "description": "Package name prefixes to exclude. Valid only within a `packageRules` object.", |
2279 | | - "oneOf": [ |
2280 | | - { |
2281 | | - "type": "array", |
2282 | | - "items": { |
2283 | | - "type": "string" |
2284 | | - } |
2285 | | - }, |
2286 | | - { |
2287 | | - "type": "string" |
2288 | | - } |
2289 | | - ] |
2290 | | - }, |
2291 | | - "excludeRepositories": { |
2292 | | - "description": "List of repositories to exclude (e.g. `[\"**/*-archived\"]`). Valid only within a `packageRules` object.", |
2293 | | - "oneOf": [ |
2294 | | - { |
2295 | | - "type": "array", |
2296 | | - "items": { |
2297 | | - "type": "string" |
2298 | | - } |
2299 | | - }, |
2300 | | - { |
2301 | | - "type": "string" |
2302 | | - } |
2303 | | - ] |
2304 | | - }, |
2305 | 2210 | "matchBaseBranches": { |
2306 | 2211 | "description": "List of strings containing exact matches (e.g. `[\"main\"]`) and/or regex expressions (e.g. `[\"/^release/.*/\"]`). Valid only within a `packageRules` object.", |
2307 | 2212 | "oneOf": [ |
|
2396 | 2301 | } |
2397 | 2302 | ] |
2398 | 2303 | }, |
2399 | | - "matchDepPatterns": { |
2400 | | - "description": "Dep name patterns to match. Valid only within a `packageRules` object.", |
2401 | | - "oneOf": [ |
2402 | | - { |
2403 | | - "type": "array", |
2404 | | - "items": { |
2405 | | - "type": "string", |
2406 | | - "format": "regex" |
2407 | | - } |
2408 | | - }, |
2409 | | - { |
2410 | | - "type": "string", |
2411 | | - "format": "regex" |
2412 | | - } |
2413 | | - ] |
2414 | | - }, |
2415 | | - "matchDepPrefixes": { |
2416 | | - "description": "Dep names prefixes to match. Valid only within a `packageRules` object.", |
2417 | | - "oneOf": [ |
2418 | | - { |
2419 | | - "type": "array", |
2420 | | - "items": { |
2421 | | - "type": "string" |
2422 | | - } |
2423 | | - }, |
2424 | | - { |
2425 | | - "type": "string" |
2426 | | - } |
2427 | | - ] |
2428 | | - }, |
2429 | 2304 | "matchDepTypes": { |
2430 | 2305 | "description": "List of depTypes to match (e.g. [`peerDependencies`]). Valid only within `packageRules` object.", |
2431 | 2306 | "oneOf": [ |
|
2479 | 2354 | } |
2480 | 2355 | ] |
2481 | 2356 | }, |
2482 | | - "matchPackagePatterns": { |
2483 | | - "description": "Package name patterns to match. Valid only within a `packageRules` object.", |
2484 | | - "oneOf": [ |
2485 | | - { |
2486 | | - "type": "array", |
2487 | | - "items": { |
2488 | | - "type": "string", |
2489 | | - "format": "regex" |
2490 | | - } |
2491 | | - }, |
2492 | | - { |
2493 | | - "type": "string", |
2494 | | - "format": "regex" |
2495 | | - } |
2496 | | - ] |
2497 | | - }, |
2498 | | - "matchPackagePrefixes": { |
2499 | | - "description": "Package name prefixes to match. Valid only within a `packageRules` object.", |
2500 | | - "oneOf": [ |
2501 | | - { |
2502 | | - "type": "array", |
2503 | | - "items": { |
2504 | | - "type": "string" |
2505 | | - } |
2506 | | - }, |
2507 | | - { |
2508 | | - "type": "string" |
2509 | | - } |
2510 | | - ] |
2511 | | - }, |
2512 | 2357 | "matchRepositories": { |
2513 | 2358 | "description": "List of repositories to match (e.g. `[\"**/*-archived\"]`). Valid only within a `packageRules` object.", |
2514 | 2359 | "oneOf": [ |
|
2523 | 2368 | } |
2524 | 2369 | ] |
2525 | 2370 | }, |
2526 | | - "matchSourceUrlPrefixes": { |
2527 | | - "description": "A list of source URL prefixes to match against, commonly used to group monorepos or packages from the same organization.", |
2528 | | - "oneOf": [ |
2529 | | - { |
2530 | | - "type": "array", |
2531 | | - "items": { |
2532 | | - "type": "string" |
2533 | | - } |
2534 | | - }, |
2535 | | - { |
2536 | | - "type": "string" |
2537 | | - } |
2538 | | - ] |
2539 | | - }, |
2540 | 2371 | "matchSourceUrls": { |
2541 | 2372 | "description": "A list of source URLs to exact match against.", |
2542 | 2373 | "oneOf": [ |
|
2745 | 2576 | }, |
2746 | 2577 | "platformCommit": { |
2747 | 2578 | "description": "Use platform API to perform commits instead of using Git directly.", |
2748 | | - "type": "boolean", |
2749 | | - "default": false |
| 2579 | + "type": "string", |
| 2580 | + "enum": [ |
| 2581 | + "auto", |
| 2582 | + "disabled", |
| 2583 | + "enabled" |
| 2584 | + ], |
| 2585 | + "default": "auto" |
2750 | 2586 | }, |
2751 | 2587 | "poetry": { |
2752 | 2588 | "description": "Configuration object for the poetry manager", |
|
3462 | 3298 | "description": "Repository Auth Token.", |
3463 | 3299 | "type": "string" |
3464 | 3300 | }, |
3465 | | - "transitiveRemediation": { |
3466 | | - "description": "Enable remediation of transitive dependencies.", |
3467 | | - "type": "boolean", |
3468 | | - "default": false |
3469 | | - }, |
3470 | 3301 | "travis": { |
3471 | 3302 | "description": "Configuration object for the travis manager", |
3472 | 3303 | "type": "object", |
|
3629 | 3460 | "minimumReleaseAge": null, |
3630 | 3461 | "rangeStrategy": "update-lockfile", |
3631 | 3462 | "commitMessageSuffix": "[SECURITY]", |
3632 | | - "branchTopic": "{{{datasource}}}-{{{depName}}}-vulnerability", |
| 3463 | + "branchTopic": "{{{datasource}}}-{{{depNameSanitized}}}-vulnerability", |
3633 | 3464 | "prCreation": "immediate" |
3634 | 3465 | }, |
3635 | 3466 | "$ref": "#" |
|
0 commit comments