Skip to content

Commit fe16f42

Browse files
authored
Merge pull request #432 from python-jsonschema/vendor-schemas-auto
Update vendored schemas
2 parents 4476640 + 6d3f03d commit fe16f42

File tree

11 files changed

+25
-20
lines changed

11 files changed

+25
-20
lines changed

CHANGELOG.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Unreleased
1010

1111
.. vendor-insert-here
1212
13-
- Update vendored schemas (2024-05-12)
13+
- Update vendored schemas (2024-05-19)
1414

1515
0.28.3
1616
------

src/check_jsonschema/builtin_schemas/vendor/buildkite.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1313,6 +1313,9 @@
13131313
"notify": {
13141314
"$ref": "#/definitions/commonOptions/buildNotify"
13151315
},
1316+
"skip": {
1317+
"$ref": "#/definitions/commonOptions/skip"
1318+
},
13161319
"steps": {
13171320
"description": "A list of steps",
13181321
"type": "array",

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2306,7 +2306,7 @@
23062306
"properties": {
23072307
"path_prefix": {
23082308
"type": "string",
2309-
"markdownDescription": "The GitLab Pages URL path prefix used in this version of pages."
2309+
"markdownDescription": "The GitLab Pages URL path prefix used in this version of pages. The given value is converted to lowercase, shortened to 63 bytes, and everything except alphanumeric characters is replaced with a hyphen. Leading and trailing hyphens are not permitted."
23102310
}
23112311
}
23122312
}

src/check_jsonschema/builtin_schemas/vendor/renovate.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -965,7 +965,7 @@
965965
"dockerSidecarImage": {
966966
"description": "Change this value to override the default Renovate sidecar image.",
967967
"type": "string",
968-
"default": "ghcr.io/containerbase/sidecar:10.6.9"
968+
"default": "ghcr.io/containerbase/sidecar:10.6.11"
969969
},
970970
"dockerUser": {
971971
"description": "Set the `UID` and `GID` for Docker-based binaries if you use `binarySource=docker`.",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
c0c0a79a4c90d3038ad128eb795f6419b7847c852ab63a0ab421af60eb6b6279
1+
f9821c3bb233d271a6420b97e1f31197b81d13e5e87b15599944743e6656d8bb
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
27b78ab0e321dfa26707da6159bf21d0cb18f51fba9b5645ae68449e06ee24e4
1+
054a4427c1c6e89ebf466b535a51e550660f9bf76ff9d2b3b8f0da1b0c24c64f
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
137002a9d5f629cb0907119a78004de3f21ab0810bf3d338cdb011855179a572
1+
10aa04c61243926bcf00f3d1523dc7edd1a247f26e2790d155cb086bc46bd0f8
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
923d56a92dc5f6516fb615a778c62dacc5f11126ad887d7f747a0ec2573021a4
1+
326c9ebefc80d262b106ef252fecad30b389aace8a3936bac6049116b25efb7d
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
c265e82d6daa54496cae7678de07442d9a7d36cd2ce42d06c17f4558356accb5
1+
12c7dc514cac2a440d324fc66e23fcf403d679e56775d0b18580617992550aca

src/check_jsonschema/builtin_schemas/vendor/taskfile.json

Lines changed: 8 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -277,14 +277,6 @@
277277
"map": {
278278
"type": "object",
279279
"description": "The value will be treated as a literal map type and stored in the variable"
280-
},
281-
"json": {
282-
"type": "string",
283-
"description": "The value will parsed as a JSON string and stored in the variable"
284-
},
285-
"yaml": {
286-
"type": "string",
287-
"description": "The value will parsed as a YAML string and stored in the variable"
288280
}
289281
},
290282
"additionalProperties": false
@@ -496,7 +488,8 @@
496488
"description": "Failure message to display when the condition fails",
497489
"type": "string"
498490
}
499-
}
491+
},
492+
"additionalProperties": false
500493
},
501494
"glob": {
502495
"anyOf": [
@@ -515,7 +508,8 @@
515508
"description": "File or glob pattern to exclude from the list",
516509
"type": "string"
517510
}
518-
}
511+
},
512+
"additionalProperties": false
519513
},
520514
"run": {
521515
"type": "string",
@@ -545,7 +539,8 @@
545539
}
546540
}
547541
}
548-
}
542+
},
543+
"additionalProperties": false
549544
},
550545
"requires_obj": {
551546
"type": "object",
@@ -557,7 +552,8 @@
557552
"type": "string"
558553
}
559554
}
560-
}
555+
},
556+
"additionalProperties": false
561557
}
562558
},
563559
"allOf": [

0 commit comments

Comments
 (0)