renovate 40.3.6 → 40.5.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 +34 -2
- package/dist/config/options/index.js.map +1 -1
- package/dist/config/types.d.ts +8 -1
- package/dist/config/types.js.map +1 -1
- package/dist/modules/datasource/index.js +1 -1
- package/dist/modules/datasource/index.js.map +1 -1
- package/dist/util/cache/memory/index.d.ts +1 -0
- package/dist/util/cache/memory/index.js +17 -6
- package/dist/util/cache/memory/index.js.map +1 -1
- package/dist/util/cache/package/key.js +1 -1
- package/dist/util/cache/package/key.js.map +1 -1
- package/dist/util/cache/package/types.d.ts +1 -1
- package/dist/util/cache/package/types.js.map +1 -1
- package/dist/workers/repository/process/extract-update.js +2 -0
- package/dist/workers/repository/process/extract-update.js.map +1 -1
- package/dist/workers/repository/update/branch/bump-versions.d.ts +2 -0
- package/dist/workers/repository/update/branch/bump-versions.js +191 -0
- package/dist/workers/repository/update/branch/bump-versions.js.map +1 -0
- package/dist/workers/repository/update/branch/index.js +3 -0
- package/dist/workers/repository/update/branch/index.js.map +1 -1
- package/package.json +4 -5
- package/renovate-schema.json +63 -1
package/renovate-schema.json
CHANGED
@@ -476,6 +476,68 @@
|
|
476
476
|
"prerelease"
|
477
477
|
]
|
478
478
|
},
|
479
|
+
"bumpVersions": {
|
480
|
+
"description": "A list of bumpVersion config options to bump generic version numbers.",
|
481
|
+
"type": "array",
|
482
|
+
"items": {
|
483
|
+
"allOf": [
|
484
|
+
{
|
485
|
+
"type": "object",
|
486
|
+
"properties": {
|
487
|
+
"description": {
|
488
|
+
"oneOf": [
|
489
|
+
{
|
490
|
+
"type": "array",
|
491
|
+
"items": {
|
492
|
+
"type": "string",
|
493
|
+
"description": "A custom description for this configuration object"
|
494
|
+
}
|
495
|
+
},
|
496
|
+
{
|
497
|
+
"type": "string",
|
498
|
+
"description": "A custom description for this configuration object"
|
499
|
+
}
|
500
|
+
]
|
501
|
+
},
|
502
|
+
"bumpType": {
|
503
|
+
"description": "The semver level to use when bumping versions. This is used by the `bumpVersions` feature.",
|
504
|
+
"type": "string",
|
505
|
+
"enum": [
|
506
|
+
"major",
|
507
|
+
"minor",
|
508
|
+
"patch",
|
509
|
+
"prerelease"
|
510
|
+
],
|
511
|
+
"default": "patch"
|
512
|
+
},
|
513
|
+
"filePatterns": {
|
514
|
+
"description": "A list of patterns to match files that contain the version string.",
|
515
|
+
"type": "array",
|
516
|
+
"items": {
|
517
|
+
"type": "string"
|
518
|
+
}
|
519
|
+
},
|
520
|
+
"matchStrings": {
|
521
|
+
"description": "Queries to use. Valid only within `bumpVersions` or `customManagers` object.",
|
522
|
+
"type": "array",
|
523
|
+
"items": {
|
524
|
+
"type": "string"
|
525
|
+
}
|
526
|
+
},
|
527
|
+
"name": {
|
528
|
+
"description": "A name for the bumpVersion config. This is used for logging and debugging.",
|
529
|
+
"type": [
|
530
|
+
"string",
|
531
|
+
"null"
|
532
|
+
],
|
533
|
+
"default": null
|
534
|
+
}
|
535
|
+
}
|
536
|
+
}
|
537
|
+
]
|
538
|
+
},
|
539
|
+
"default": []
|
540
|
+
},
|
479
541
|
"bun": {
|
480
542
|
"description": "Configuration object for the bun manager",
|
481
543
|
"type": "object",
|
@@ -888,7 +950,7 @@
|
|
888
950
|
]
|
889
951
|
},
|
890
952
|
"matchStrings": {
|
891
|
-
"description": "Queries to use. Valid only within
|
953
|
+
"description": "Queries to use. Valid only within `bumpVersions` or `customManagers` object.",
|
892
954
|
"type": "array",
|
893
955
|
"items": {
|
894
956
|
"type": "string"
|