renovate 43.80.0 → 43.82.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 +14 -1
- package/dist/config/options/index.js.map +1 -1
- package/dist/config/types.d.ts +1 -0
- package/dist/config/types.js.map +1 -1
- package/dist/config/validation.js +1 -0
- package/dist/config/validation.js.map +1 -1
- package/dist/data/replacements.js +10 -0
- package/dist/modules/platform/bitbucket-server/index.d.ts +6 -2
- package/dist/modules/platform/bitbucket-server/index.js +17 -4
- package/dist/modules/platform/bitbucket-server/index.js.map +1 -1
- package/dist/util/package-rules/matchers.js +2 -0
- package/dist/util/package-rules/matchers.js.map +1 -1
- package/dist/util/package-rules/registryurls.js +15 -0
- package/dist/util/package-rules/registryurls.js.map +1 -0
- package/package.json +1 -1
- package/renovate-schema.json +17 -2
|
@@ -621,7 +621,7 @@ const options = [
|
|
|
621
621
|
name: "dockerSidecarImage",
|
|
622
622
|
description: "Change this value to override the default Renovate sidecar image.",
|
|
623
623
|
type: "string",
|
|
624
|
-
default: "ghcr.io/renovatebot/base-image:13.27.
|
|
624
|
+
default: "ghcr.io/renovatebot/base-image:13.27.2",
|
|
625
625
|
globalOnly: true,
|
|
626
626
|
deprecationMsg: "The usage of `binarySource=docker` is deprecated, and will be removed in the future"
|
|
627
627
|
},
|
|
@@ -1530,6 +1530,19 @@ const options = [
|
|
|
1530
1530
|
cli: false,
|
|
1531
1531
|
env: false
|
|
1532
1532
|
},
|
|
1533
|
+
{
|
|
1534
|
+
name: "matchRegistryUrls",
|
|
1535
|
+
description: "A list of URLs (or URL patterns) to match against registryUrls.",
|
|
1536
|
+
type: "array",
|
|
1537
|
+
subType: "string",
|
|
1538
|
+
allowString: true,
|
|
1539
|
+
stage: "package",
|
|
1540
|
+
patternMatch: true,
|
|
1541
|
+
parents: ["packageRules"],
|
|
1542
|
+
mergeable: true,
|
|
1543
|
+
cli: false,
|
|
1544
|
+
env: false
|
|
1545
|
+
},
|
|
1533
1546
|
{
|
|
1534
1547
|
name: "autoReplaceGlobalMatch",
|
|
1535
1548
|
description: "Control whether replacement regular expressions are global matches or only the first match.",
|