Skip to content

Commit

Permalink
Merge pull request #428 from python-jsonschema/vendor-schemas-auto
Browse files Browse the repository at this point in the history
Update vendored schemas
  • Loading branch information
sirosen committed May 5, 2024
2 parents 3020104 + eca792c commit 21c0bc1
Show file tree
Hide file tree
Showing 7 changed files with 48 additions and 7 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-04-28)
- Update vendored schemas (2024-05-05)

0.28.2
------
Expand Down
22 changes: 21 additions & 1 deletion src/check_jsonschema/builtin_schemas/vendor/dependabot.json
Original file line number Diff line number Diff line change
Expand Up @@ -746,6 +746,16 @@
],
"additionalProperties": false
},
"directories": {
"description": "Locations of package manifests",
"type": "array",
"items": {
"type": "string",
"minLength": 1
},
"minItems": 1,
"uniqueItems": true
},
"directory": {
"description": "Location of package manifests",
"type": "string",
Expand Down Expand Up @@ -957,7 +967,17 @@
"description": "How to update manifest version requirements"
}
},
"required": ["package-ecosystem", "directory", "schedule"]
"allOf": [
{
"required": ["package-ecosystem", "schedule"]
},
{
"oneOf": [
{ "required": ["directories"] },
{ "required": ["directory"] }
]
}
]
},
"registry": {
"type": "object",
Expand Down
10 changes: 8 additions & 2 deletions src/check_jsonschema/builtin_schemas/vendor/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -944,7 +944,7 @@
"dockerSidecarImage": {
"description": "Change this value to override the default Renovate sidecar image.",
"type": "string",
"default": "ghcr.io/containerbase/sidecar:10.5.0"
"default": "ghcr.io/containerbase/sidecar:10.6.0"
},
"dockerUser": {
"description": "Set the `UID` and `GID` for Docker-based binaries if you use `binarySource=docker`.",
Expand Down Expand Up @@ -1155,7 +1155,8 @@
"type": "object",
"default": {
"fileMatch": [
"(^|/)\\.fvm/fvm_config\\.json$"
"(^|/)\\.fvm/fvm_config\\.json$",
"(^|/)\\.fvmrc$"
],
"versioning": "semver"
},
Expand Down Expand Up @@ -3422,6 +3423,11 @@
"type": "boolean",
"default": true
},
"userAgent": {
"description": "If set to any string, Renovate will use this as the `user-agent` it sends with HTTP requests.",
"type": "string",
"default": null
},
"userStrings": {
"description": "User-facing strings for the Renovate comment when a PR is closed.",
"type": "object",
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1ca8e8e09124a16930e7f6434b596e07c0835c2a7ed0857cb2c8aec67efb5039
f68c06703b5e0fa54ea5800d198dae1bcb1df99d26f9067d64f5df836402e12a
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5b5f1a64a66d41b99627899ccbe5ea47800720a9418c68bc7865ef2a5acb4f13
55cc2bb903967bb6d13744bd895e96717ebe2ab785fe3dfcc23c1a7c42b759e2
Original file line number Diff line number Diff line change
@@ -1 +1 @@
f486bb80b1e502f01bf6d718eef1530501fbeca043f768bae5fe50779d437185
004b2133059640755375e1c5cb899a3f026c305147145cdd0f47563fa91f9961
15 changes: 15 additions & 0 deletions src/check_jsonschema/builtin_schemas/vendor/woodpecker-ci.json
Original file line number Diff line number Diff line change
Expand Up @@ -371,6 +371,21 @@
},
"backend_options": {
"$ref": "#/definitions/step_backend_options"
},
"entrypoint": {
"description": "Defines container entrypoint.",
"oneOf": [
{
"type": "array",
"minLength": 1,
"items": {
"type": "string"
}
},
{
"type": "string"
}
]
}
}
},
Expand Down

0 comments on commit 21c0bc1

Please sign in to comment.