Skip to content

Commit

Permalink
Merge pull request #429 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 15, 2024
2 parents cf1014d + e59be75 commit 57fff0d
Show file tree
Hide file tree
Showing 9 changed files with 60 additions and 15 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ Unreleased

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

0.28.3
------

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,9 @@
"actions": {
"$ref": "#/definitions/permissions-level"
},
"attestations": {
"$ref": "#/definitions/permissions-level"
},
"checks": {
"$ref": "#/definitions/permissions-level"
},
Expand Down
39 changes: 35 additions & 4 deletions src/check_jsonschema/builtin_schemas/vendor/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,27 @@
},
"default": null
},
"autodiscoverRepoOrder": {
"description": "The order method for autodiscover server side repository search.",
"type": "string",
"enum": [
"asc",
"desc"
],
"default": null
},
"autodiscoverRepoSort": {
"description": "The sort method for autodiscover server side repository search.",
"type": "string",
"enum": [
"alpha",
"created",
"updated",
"size",
"id"
],
"default": null
},
"autodiscoverTopics": {
"description": "Filter the list of autodiscovered repositories by topics.",
"type": "array",
Expand Down Expand Up @@ -284,7 +305,7 @@
"type": "object",
"default": {
"fileMatch": [
"(^|/)WORKSPACE(|\\.bazel)$",
"(^|/)WORKSPACE(|\\.bazel|\\.bzlmod)$",
"\\.bzl$"
]
},
Expand Down Expand Up @@ -944,7 +965,7 @@
"dockerSidecarImage": {
"description": "Change this value to override the default Renovate sidecar image.",
"type": "string",
"default": "ghcr.io/containerbase/sidecar:10.6.0"
"default": "ghcr.io/containerbase/sidecar:10.6.9"
},
"dockerUser": {
"description": "Set the `UID` and `GID` for Docker-based binaries if you use `binarySource=docker`.",
Expand Down Expand Up @@ -1684,7 +1705,7 @@
"default": "{{parentOrg}}/renovate-config"
},
"inheritConfigStrict": {
"description": "If `true`, any `inheritedConfig` fetch errror will result in an aborted run.",
"description": "If `true`, any `inheritedConfig` fetch error will result in an aborted run.",
"type": "boolean",
"default": false
},
Expand Down Expand Up @@ -1866,7 +1887,8 @@
"default": {
"fileMatch": [
"(^|/|\\.)pom\\.xml$",
"^(((\\.mvn)|(\\.m2))/)?settings\\.xml$"
"^(((\\.mvn)|(\\.m2))/)?settings\\.xml$",
"(^|/)\\.mvn/extensions\\.xml$"
],
"versioning": "maven"
},
Expand Down Expand Up @@ -1939,6 +1961,15 @@
},
"$ref": "#"
},
"mode": {
"description": "Mode of operation.",
"type": "string",
"enum": [
"full",
"silent"
],
"default": "full"
},
"nix": {
"description": "Configuration object for the nix manager",
"type": "object",
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1b24b33d22188a8b4f3f353c38ffed01e45128b849c2329f5e2caa6550684513
94475510f33ed1503fa6f6899900927fa5693b4f9cf759209a0dc76a267af9a3
Original file line number Diff line number Diff line change
@@ -1 +1 @@
55cc2bb903967bb6d13744bd895e96717ebe2ab785fe3dfcc23c1a7c42b759e2
137002a9d5f629cb0907119a78004de3f21ab0810bf3d338cdb011855179a572
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4f4897c0732ae4b76f2b42c7408ada689a5975088140676e708ff411ce8a2e92
923d56a92dc5f6516fb615a778c62dacc5f11126ad887d7f747a0ec2573021a4
Original file line number Diff line number Diff line change
@@ -1 +1 @@
004b2133059640755375e1c5cb899a3f026c305147145cdd0f47563fa91f9961
c265e82d6daa54496cae7678de07442d9a7d36cd2ce42d06c17f4558356accb5
10 changes: 5 additions & 5 deletions src/check_jsonschema/builtin_schemas/vendor/taskfile.json
Original file line number Diff line number Diff line change
Expand Up @@ -285,9 +285,9 @@
"yaml": {
"type": "string",
"description": "The value will parsed as a YAML string and stored in the variable"
},
"additionalProperties": false
}
}
},
"additionalProperties": false
},
"task_call": {
"type": "object",
Expand Down Expand Up @@ -512,7 +512,7 @@
"type": "object",
"properties": {
"exclude": {
"description": "File or glob patter to exclude from the list",
"description": "File or glob pattern to exclude from the list",
"type": "string"
}
}
Expand Down Expand Up @@ -648,7 +648,7 @@
"$ref": "#/definitions/tasks"
},
"silent": {
"description": "Default 'silent' options for this Taskfile. If `false`, can be overidden with `true` in a task by task basis.",
"description": "Default 'silent' options for this Taskfile. If `false`, can be overridden with `true` in a task by task basis.",
"type": "boolean"
},
"set": {
Expand Down
13 changes: 11 additions & 2 deletions src/check_jsonschema/builtin_schemas/vendor/woodpecker-ci.json
Original file line number Diff line number Diff line change
Expand Up @@ -706,8 +706,17 @@
"description": "Advanced options for the kubernetes agent backends",
"type": "object",
"properties": {
"resources": {
"$ref": "#/definitions/step_backend_kubernetes_resources"
"labels": {
"type": "object",
"additionalProperties": {
"type": ["boolean", "string", "number"]
}
},
"annotations": {
"type": "object",
"additionalProperties": {
"type": ["boolean", "string", "number"]
}
},
"securityContext": {
"$ref": "#/definitions/step_backend_kubernetes_security_context"
Expand Down

0 comments on commit 57fff0d

Please sign in to comment.