Skip to content

Commit cc87170

Browse files
authored
Merge pull request #316 from python-jsonschema/vendor-schemas-auto
Changes by create-pull-request action
2 parents 8bd3492 + c76ca21 commit cc87170

File tree

7 files changed

+71
-10
lines changed

7 files changed

+71
-10
lines changed

CHANGELOG.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ Unreleased
1010

1111
.. vendor-insert-here
1212
13+
- Update vendored schemas (2023-09-20)
14+
1315
0.26.3
1416
------
1517

src/check_jsonschema/builtin_schemas/vendor/bitbucket-pipelines.json

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,22 @@
2323
"export": {
2424
"type": "boolean",
2525
"title": "Enable pipelines config sharing",
26-
"description": "Allows other Bitbucket repositories to import pipeline configurations from this file. A bitbucket-pipelines.yml can't contain both an `import` and an `export` property"
26+
"description": "Allows other Bitbucket repositories to import pipeline configurations from this file. A shared pipeline definition can't contain another `import` property."
2727
}
2828
},
2929
"additionalProperties": false,
30-
"required": [
31-
"pipelines"
30+
"anyOf": [
31+
{
32+
"required": [
33+
"pipelines"
34+
]
35+
},
36+
{
37+
"required": [
38+
"definitions",
39+
"export"
40+
]
41+
}
3242
],
3343
"definitions": {
3444
"pipelines": {
@@ -709,4 +719,4 @@
709719
]
710720
}
711721
}
712-
}
722+
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
959c8b28a5268492b6de046e4cca256c98f8ccb08ee76094f6734c3284570cb6
1+
de0f949f4ce975d2263aff83758d8ea07443dfbe50a9d29aed6eb9d92066f06e

src/check_jsonschema/builtin_schemas/vendor/gitlab-ci.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -845,6 +845,9 @@
845845
"if": {
846846
"$ref": "#/definitions/if"
847847
},
848+
"changes": {
849+
"$ref": "#/definitions/changes"
850+
},
848851
"exists": {
849852
"$ref": "#/definitions/exists"
850853
},
@@ -2084,6 +2087,10 @@
20842087
"publish": {
20852088
"description": "A path to a directory that contains the files to be published with Pages",
20862089
"type": "string"
2090+
},
2091+
"pages_path_prefix": {
2092+
"description": "The path prefix identifier for this version of pages. Allows creation of multiple versions of the same site with different path prefixes",
2093+
"type": "string"
20872094
}
20882095
},
20892096
"oneOf": [
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
c207b7443ef9c76fa5dfc9a17706a5115df3d387b958219b5c69580eb5773f7f
1+
16f6b005335375d2f954e17bf6057adb77ef03b8f7b050e0275b21097b712da2

src/check_jsonschema/builtin_schemas/vendor/renovate.json

Lines changed: 45 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,14 @@
141141
],
142142
"default": null
143143
},
144+
"autodiscoverNamespaces": {
145+
"description": "Filter the list of autodiscovered repositories by namespaces.",
146+
"type": "array",
147+
"items": {
148+
"type": "string"
149+
},
150+
"default": null
151+
},
144152
"autodiscoverTopics": {
145153
"description": "Filter the list of autodiscovered repositories by topics.",
146154
"type": "array",
@@ -373,6 +381,25 @@
373381
"prerelease"
374382
]
375383
},
384+
"bun": {
385+
"description": "Configuration object for the bun manager",
386+
"type": "object",
387+
"default": {
388+
"fileMatch": [
389+
"(^|/)bun\\.lockb$"
390+
],
391+
"versioning": "npm",
392+
"digest": {
393+
"prBodyDefinitions": {
394+
"Change": "{{#if displayFrom}}`{{{displayFrom}}}` -> {{else}}{{#if currentValue}}`{{{currentValue}}}` -> {{/if}}{{/if}}{{#if displayTo}}`{{{displayTo}}}`{{else}}`{{{newValue}}}`{{/if}}"
395+
}
396+
},
397+
"prBodyDefinitions": {
398+
"Change": "[{{#if displayFrom}}`{{{displayFrom}}}` -> {{else}}{{#if currentValue}}`{{{currentValue}}}` -> {{/if}}{{/if}}{{#if displayTo}}`{{{displayTo}}}`{{else}}`{{{newValue}}}`{{/if}}]({{#if depName}}https://renovatebot.com/diffs/npm/{{replace '/' '%2f' depName}}/{{{currentVersion}}}/{{{newVersion}}}{{/if}})"
399+
}
400+
},
401+
"$ref": "#"
402+
},
376403
"bundler": {
377404
"description": "Configuration object for the bundler manager",
378405
"type": "object",
@@ -391,7 +418,7 @@
391418
"cacheHardTtlMinutes": {
392419
"description": "Maximum duration in minutes to keep datasource cache entries.",
393420
"type": "integer",
394-
"default": 1440
421+
"default": 10080
395422
},
396423
"cacheTtlOverride": {
397424
"description": "An object that contains cache namespace TTL override values",
@@ -774,7 +801,7 @@
774801
"dockerSidecarImage": {
775802
"description": "Change this value to override the default Renovate sidecar image.",
776803
"type": "string",
777-
"default": "ghcr.io/containerbase/sidecar:9.19.0"
804+
"default": "ghcr.io/containerbase/sidecar:9.20.3"
778805
},
779806
"dockerUser": {
780807
"description": "Set the `UID` and `GID` for Docker-based binaries if you use `binarySource=docker`.",
@@ -1052,7 +1079,7 @@
10521079
"type": "object",
10531080
"default": {
10541081
"fileMatch": [
1055-
"^(workflow-templates|\\.github/workflows)/[^/]+\\.ya?ml$",
1082+
"^(workflow-templates|\\.(?:github|gitea|forgejo)/workflows)/[^/]+\\.ya?ml$",
10561083
"(^|/)action\\.ya?ml$"
10571084
]
10581085
},
@@ -1310,6 +1337,21 @@
13101337
"description": "hostType for a package rule. Can be a platform name or a datasource name.",
13111338
"type": "string"
13121339
},
1340+
"httpsCertificate": {
1341+
"description": "The certificate chains in PEM format.",
1342+
"type": "string",
1343+
"default": null
1344+
},
1345+
"httpsCertificateAuthority": {
1346+
"description": "The overriding trusted CA certificate.",
1347+
"type": "string",
1348+
"default": null
1349+
},
1350+
"httpsPrivateKey": {
1351+
"description": "The private key in PEM format.",
1352+
"type": "string",
1353+
"default": null
1354+
},
13131355
"insecureRegistry": {
13141356
"description": "Explicitly turn on insecure Docker registry access (HTTP).",
13151357
"type": "boolean"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
f0799b37b14031aa00e8648fafdecbcb4c88c3b90c3925ea230f7badea85b01a
1+
f0779dfecae62b7cc631efdd770881082d267830066ae568efdecef67d104266

0 commit comments

Comments
 (0)