Skip to content

Commit

Permalink
Merge pull request #432 from python-jsonschema/vendor-schemas-auto
Browse files Browse the repository at this point in the history
Update vendored schemas
  • Loading branch information
sirosen authored May 20, 2024
2 parents 4476640 + 6d3f03d commit fe16f42
Show file tree
Hide file tree
Showing 11 changed files with 25 additions and 20 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Unreleased

.. vendor-insert-here
- Update vendored schemas (2024-05-12)
- Update vendored schemas (2024-05-19)

0.28.3
------
Expand Down
3 changes: 3 additions & 0 deletions src/check_jsonschema/builtin_schemas/vendor/buildkite.json
Original file line number Diff line number Diff line change
Expand Up @@ -1313,6 +1313,9 @@
"notify": {
"$ref": "#/definitions/commonOptions/buildNotify"
},
"skip": {
"$ref": "#/definitions/commonOptions/skip"
},
"steps": {
"description": "A list of steps",
"type": "array",
Expand Down
2 changes: 1 addition & 1 deletion src/check_jsonschema/builtin_schemas/vendor/gitlab-ci.json
Original file line number Diff line number Diff line change
Expand Up @@ -2306,7 +2306,7 @@
"properties": {
"path_prefix": {
"type": "string",
"markdownDescription": "The GitLab Pages URL path prefix used in this version of pages."
"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."
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/check_jsonschema/builtin_schemas/vendor/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -965,7 +965,7 @@
"dockerSidecarImage": {
"description": "Change this value to override the default Renovate sidecar image.",
"type": "string",
"default": "ghcr.io/containerbase/sidecar:10.6.9"
"default": "ghcr.io/containerbase/sidecar:10.6.11"
},
"dockerUser": {
"description": "Set the `UID` and `GID` for Docker-based binaries if you use `binarySource=docker`.",
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
c0c0a79a4c90d3038ad128eb795f6419b7847c852ab63a0ab421af60eb6b6279
f9821c3bb233d271a6420b97e1f31197b81d13e5e87b15599944743e6656d8bb
Original file line number Diff line number Diff line change
@@ -1 +1 @@
27b78ab0e321dfa26707da6159bf21d0cb18f51fba9b5645ae68449e06ee24e4
054a4427c1c6e89ebf466b535a51e550660f9bf76ff9d2b3b8f0da1b0c24c64f
Original file line number Diff line number Diff line change
@@ -1 +1 @@
137002a9d5f629cb0907119a78004de3f21ab0810bf3d338cdb011855179a572
10aa04c61243926bcf00f3d1523dc7edd1a247f26e2790d155cb086bc46bd0f8
Original file line number Diff line number Diff line change
@@ -1 +1 @@
923d56a92dc5f6516fb615a778c62dacc5f11126ad887d7f747a0ec2573021a4
326c9ebefc80d262b106ef252fecad30b389aace8a3936bac6049116b25efb7d
Original file line number Diff line number Diff line change
@@ -1 +1 @@
c265e82d6daa54496cae7678de07442d9a7d36cd2ce42d06c17f4558356accb5
12c7dc514cac2a440d324fc66e23fcf403d679e56775d0b18580617992550aca
20 changes: 8 additions & 12 deletions src/check_jsonschema/builtin_schemas/vendor/taskfile.json
Original file line number Diff line number Diff line change
Expand Up @@ -277,14 +277,6 @@
"map": {
"type": "object",
"description": "The value will be treated as a literal map type and stored in the variable"
},
"json": {
"type": "string",
"description": "The value will parsed as a JSON string and stored in the variable"
},
"yaml": {
"type": "string",
"description": "The value will parsed as a YAML string and stored in the variable"
}
},
"additionalProperties": false
Expand Down Expand Up @@ -496,7 +488,8 @@
"description": "Failure message to display when the condition fails",
"type": "string"
}
}
},
"additionalProperties": false
},
"glob": {
"anyOf": [
Expand All @@ -515,7 +508,8 @@
"description": "File or glob pattern to exclude from the list",
"type": "string"
}
}
},
"additionalProperties": false
},
"run": {
"type": "string",
Expand Down Expand Up @@ -545,7 +539,8 @@
}
}
}
}
},
"additionalProperties": false
},
"requires_obj": {
"type": "object",
Expand All @@ -557,7 +552,8 @@
"type": "string"
}
}
}
},
"additionalProperties": false
}
},
"allOf": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -288,6 +288,9 @@
},
"ignore_message": {
"type": "string"
},
"on_empty": {
"type": "boolean"
}
},
"additionalProperties": false
Expand Down Expand Up @@ -493,6 +496,9 @@
},
"ignore_message": {
"type": "string"
},
"on_empty": {
"type": "boolean"
}
},
"additionalProperties": false
Expand Down

0 comments on commit fe16f42

Please sign in to comment.