Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update vendored schemas #478

Merged
merged 2 commits into from
Aug 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,9 @@ Unreleased

.. vendor-insert-here

- Update vendored schemas (2024-08-11)
- Update vendored schemas (2024-08-22)
- Convert from ``setup.cfg`` to ``pyproject.toml`` for python package metadata

- Update vendored schemas (2024-07-28)

0.29.1
------

Expand Down
9 changes: 7 additions & 2 deletions src/check_jsonschema/builtin_schemas/vendor/gitlab-ci.json
Original file line number Diff line number Diff line change
Expand Up @@ -256,9 +256,13 @@
},
"reports": {
"type": "object",
"markdownDescription": "Reports will be uploaded as artifacts, and often displayed in the Gitlab UI, such as in Merge Requests. [Learn More](https://docs.gitlab.com/ee/ci/yaml/#artifactsreports).",
"markdownDescription": "Reports will be uploaded as artifacts, and often displayed in the Gitlab UI, such as in merge requests. [Learn More](https://docs.gitlab.com/ee/ci/yaml/#artifactsreports).",
"additionalProperties": false,
"properties": {
"annotations": {
"type": "string",
"description": "Path to JSON file with annotations report."
},
"junit": {
"description": "Path for file(s) that should be parsed as JUnit XML result",
"oneOf": [
Expand Down Expand Up @@ -290,7 +294,8 @@
"coverage_format": {
"description": "Code coverage format used by the test framework.",
"enum": [
"cobertura", "jacoco"
"cobertura",
"jacoco"
]
},
"path": {
Expand Down
29 changes: 28 additions & 1 deletion src/check_jsonschema/builtin_schemas/vendor/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -866,6 +866,11 @@
},
"default": null
},
"deleteConfigFile": {
"description": "If set to `true`, Renovate tries to delete the self-hosted config file after reading it.",
"type": "boolean",
"default": false
},
"dependencyDashboard": {
"description": "Whether to create a \"Dependency Dashboard\" issue in the repository.",
"type": "boolean",
Expand Down Expand Up @@ -988,10 +993,15 @@
"description": "Pass CLI flags to `docker run` command when `binarySource=docker`.",
"type": "string"
},
"dockerMaxPages": {
"description": "By default, Renovate fetches up to 20 pages of Docker tags from registries. But you can set your own limit with this config option.",
"type": "integer",
"default": 20
},
"dockerSidecarImage": {
"description": "Change this value to override the default Renovate sidecar image.",
"type": "string",
"default": "ghcr.io/containerbase/sidecar:11.9.0"
"default": "ghcr.io/containerbase/sidecar:11.11.6"
},
"dockerUser": {
"description": "Set the `UID` and `GID` for Docker-based binaries if you use `binarySource=docker`.",
Expand Down Expand Up @@ -1322,6 +1332,14 @@
},
"$ref": "#"
},
"glasskube": {
"description": "Configuration object for the glasskube manager",
"type": "object",
"default": {
"fileMatch": []
},
"$ref": "#"
},
"gleam": {
"description": "Configuration object for the gleam manager",
"type": "object",
Expand Down Expand Up @@ -3092,6 +3110,15 @@
},
"$ref": "#"
},
"s3Endpoint": {
"description": "If set, Renovate will use this string as the `endpoint` when creating the AWS S3 client instance.",
"type": "string"
},
"s3PathStyle": {
"description": "If set, Renovate will enable `forcePathStyle` when creating the AWS S3 client instance.",
"type": "boolean",
"default": false
},
"sbt": {
"description": "Configuration object for the sbt manager",
"type": "object",
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
58b11b73e7d01dbe593b029d7d49ef7b7e5fc9f7ad8a084f5cfad2b9be032ed2
92d3e0c05e41438d3d43227dd42cde6a71bda64156b31bf44e57a18de950641d
Original file line number Diff line number Diff line change
@@ -1 +1 @@
737f0c9d8a392f2130e76d696972337b542aa2b550a59252d1ca016505b486b2
4d57da18696b9d84e17ba73cdd0cdbbe606701f16ff9ac30f38a3f6359a6a9e6
Original file line number Diff line number Diff line change
@@ -1 +1 @@
29ef63757de94d0be7ed5988cc563f771e3cc712abc7ba6410598bad7ae6d0bc
c8cb2cc10d929ae47d4349b9f977bca534913b4d01a5e258c35c05dfe4f5417d
107 changes: 6 additions & 101 deletions src/check_jsonschema/builtin_schemas/vendor/woodpecker-ci.json
Original file line number Diff line number Diff line change
Expand Up @@ -163,18 +163,7 @@
"event": {
"description": "Read more: https://woodpecker-ci.org/docs/usage/workflow-syntax#event",
"default": [],
"oneOf": [
{
"type": "array",
"minLength": 1,
"items": {
"$ref": "#/definitions/event_enum"
}
},
{
"$ref": "#/definitions/event_enum"
}
]
"$ref": "#/definitions/event_constraint_list"
},
"ref": {
"description": "Read more: https://woodpecker-ci.org/docs/usage/workflow-syntax#ref",
Expand All @@ -188,10 +177,6 @@
"description": "Execute a step only on a specific platform. Read more: https://woodpecker-ci.org/docs/usage/workflow-syntax#platform",
"$ref": "#/definitions/constraint_list"
},
"environment": {
"description": "Execute a step only for a specific environment. Read more: https://woodpecker-ci.org/docs/usage/workflow-syntax#environment",
"$ref": "#/definitions/constraint_list"
},
"instance": {
"description": "Read more: https://woodpecker-ci.org/docs/usage/workflow-syntax#instance",
"$ref": "#/definitions/constraint_list"
Expand Down Expand Up @@ -291,10 +276,6 @@
"volumes": {
"$ref": "#/definitions/step_volumes"
},
"group": {
"description": "deprecated, use depends_on",
"type": "string"
},
"depends_on": {
"description": "Execute a step after another step has finished.",
"oneOf": [
Expand Down Expand Up @@ -377,10 +358,6 @@
"volumes": {
"$ref": "#/definitions/step_volumes"
},
"group": {
"description": "deprecated, use depends_on",
"type": "string"
},
"depends_on": {
"description": "Execute a step after another step has finished.",
"oneOf": [
Expand Down Expand Up @@ -448,9 +425,6 @@
"directory": {
"$ref": "#/definitions/step_directory"
},
"secrets": {
"$ref": "#/definitions/step_secrets"
},
"settings": {
"$ref": "#/definitions/step_settings"
},
Expand All @@ -460,10 +434,6 @@
"volumes": {
"$ref": "#/definitions/step_volumes"
},
"group": {
"description": "deprecated, use depends_on",
"type": "string"
},
"depends_on": {
"description": "Execute a step after another step has finished.",
"oneOf": [
Expand Down Expand Up @@ -554,10 +524,6 @@
"description": "Execute a step only on a specific platform. Read more: https://woodpecker-ci.org/docs/usage/workflow-syntax#platform",
"$ref": "#/definitions/constraint_list"
},
"environment": {
"description": "Execute a step only for a specific environment. Read more: https://woodpecker-ci.org/docs/usage/workflow-syntax#environment",
"$ref": "#/definitions/constraint_list"
},
"matrix": {
"description": "Read more: https://woodpecker-ci.org/docs/usage/matrix-workflows",
"type": "object",
Expand Down Expand Up @@ -627,40 +593,6 @@
"items": {
"$ref": "#/definitions/event_enum"
}
},
{
"type": "object",
"additionalProperties": false,
"properties": {
"include": {
"oneOf": [
{
"$ref": "#/definitions/event_enum"
},
{
"type": "array",
"minLength": 1,
"items": {
"$ref": "#/definitions/event_enum"
}
}
]
},
"exclude": {
"oneOf": [
{
"$ref": "#/definitions/event_enum"
},
{
"type": "array",
"minLength": 1,
"items": {
"$ref": "#/definitions/event_enum"
}
}
]
}
}
}
]
},
Expand Down Expand Up @@ -742,43 +674,16 @@
},
"step_environment": {
"description": "Pass environment variables to a pipeline step. Read more: https://woodpecker-ci.org/docs/usage/environment",
"oneOf": [
{
"type": "array",
"items": {
"type": "string"
},
"minLength": 1
},
{
"type": "object",
"additionalProperties": {
"type": ["boolean", "string", "number", "array", "object"]
}
}
]
"type": "object",
"additionalProperties": {
"type": ["boolean", "string", "number", "array", "object"]
}
},
"step_secrets": {
"description": "Pass secrets to a pipeline step at runtime. Read more: https://woodpecker-ci.org/docs/usage/secrets",
"type": "array",
"items": {
"oneOf": [
{
"type": "string"
},
{
"type": "object",
"required": ["source", "target"],
"properties": {
"source": {
"type": "string"
},
"target": {
"type": "string"
}
}
}
]
"type": "string"
},
"minLength": 1
},
Expand Down
Loading