Skip to content
Open
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: 2 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ Unreleased

.. vendor-insert-here

- Update vendored schemas: bitbucket-pipelines, buildkite, circle-ci,
github-issue-forms, mergify, renovate (2026-04-05)
- Update vendored schemas: bitbucket-pipelines, buildkite, circle-ci, dependabot,
github-issue-forms, meltano, mergify, readthedocs, renovate (2026-04-12)

0.37.1
------
Expand Down
9 changes: 7 additions & 2 deletions src/check_jsonschema/builtin_schemas/vendor/buildkite.json
Original file line number Diff line number Diff line change
Expand Up @@ -104,11 +104,13 @@
"enum": [
"*",
"none",
"agent_incompatible",
"agent_refused",
"agent_stop",
"cancel",
"process_run_error",
"signature_rejected"
"signature_rejected",
"stack_error"
]
}
},
Expand Down Expand Up @@ -508,7 +510,10 @@
"items": {
"type": "string"
},
"examples": [["**.go", "go.{mod,sum}"], ["app/**", "spec/**"]]
"examples": [
["**.go", "go.{mod,sum}"],
["app/**", "spec/**"]
]
},
{
"type": "object",
Expand Down
475 changes: 252 additions & 223 deletions src/check_jsonschema/builtin_schemas/vendor/circle-ci.json

Large diffs are not rendered by default.

222 changes: 110 additions & 112 deletions src/check_jsonschema/builtin_schemas/vendor/dependabot.json
Original file line number Diff line number Diff line change
Expand Up @@ -691,6 +691,7 @@
"julia",
"maven",
"mix",
"nix",
"npm",
"nuget",
"opentofu",
Expand Down Expand Up @@ -1182,119 +1183,116 @@
"registry": {
"type": "object",
"description": "The top-level registries key is optional. It allows you to specify authentication details that Dependabot can use to access private package registries.",
"additionalProperties": false,
"patternProperties": {
".+": {
"type": "object",
"additionalProperties": false,
"properties": {
"type": {
"description": "Identifies the type of registry.",
"enum": [
"cargo-registry",
"composer-repository",
"docker-registry",
"git",
"goproxy-server",
"hex-organization",
"hex-repository",
"helm-registry",
"maven-repository",
"npm-registry",
"nuget-feed",
"pub-repository",
"python-index",
"rubygems-server",
"terraform-registry"
]
},
"url": {
"description": "The URL to use to access the dependencies in this registry. The protocol is optional. If not specified, 'https://' is assumed. Dependabot adds or ignores trailing slashes as required.",
"type": "string"
},
"username": {
"description": "The username that Dependabot uses to access the registry.",
"type": "string"
},
"password": {
"description": "A reference to a Dependabot secret containing the password for the specified user.",
"type": "string"
},
"key": {
"description": "A reference to a Dependabot secret containing an access key for this registry.",
"type": "string"
},
"token": {
"description": "A reference to a Dependabot secret containing an access token for this registry.",
"type": "string"
},
"replaces-base": {
"description": "For registries with type: python-index, if the boolean value is true, pip resolves dependencies by using the specified URL rather than the base URL of the Python Package Index (by default https://pypi.org/simple).",
"type": "boolean"
},
"organization": {
"description": "",
"type": "string"
},
"repo": {
"description": "",
"type": "string"
},
"auth-key": {
"description": "",
"type": "string"
},
"public-key-fingerprint": {
"description": "",
"type": "string"
},
"registry": {
"description": "The name of the cargo registry.",
"type": "string"
},
"tenant-id": {
"description": "The tenant ID for Azure OIDC authentication.",
"type": "string"
},
"client-id": {
"description": "The client ID for Azure OIDC authentication.",
"type": "string"
},
"jfrog-oidc-provider-name": {
"description": "The JFrog OIDC provider name for authentication.",
"type": "string"
},
"identity-mapping-name": {
"description": "The identity mapping name for JFrog OIDC authentication.",
"type": "string"
},
"audience": {
"description": "The audience for OIDC or AWS authentication.",
"type": "string"
},
"aws-region": {
"description": "The AWS region for AWS CodeArtifact authentication.",
"type": "string"
},
"account-id": {
"description": "The AWS account ID for AWS CodeArtifact authentication.",
"type": "string"
},
"role-name": {
"description": "The AWS role name for AWS CodeArtifact authentication.",
"type": "string"
},
"domain": {
"description": "The domain for AWS CodeArtifact authentication.",
"type": "string"
},
"domain-owner": {
"description": "The domain owner for AWS CodeArtifact authentication.",
"type": "string"
}
"additionalProperties": {
"type": "object",
"additionalProperties": false,
"properties": {
"type": {
"description": "Identifies the type of registry.",
"enum": [
"cargo-registry",
"composer-repository",
"docker-registry",
"git",
"goproxy-server",
"hex-organization",
"hex-repository",
"helm-registry",
"maven-repository",
"npm-registry",
"nuget-feed",
"pub-repository",
"python-index",
"rubygems-server",
"terraform-registry"
]
},
"required": ["type", "url"]
}
"url": {
"description": "The URL to use to access the dependencies in this registry. The protocol is optional. If not specified, 'https://' is assumed. Dependabot adds or ignores trailing slashes as required.",
"type": "string"
},
"username": {
"description": "The username that Dependabot uses to access the registry.",
"type": "string"
},
"password": {
"description": "A reference to a Dependabot secret containing the password for the specified user.",
"type": "string"
},
"key": {
"description": "A reference to a Dependabot secret containing an access key for this registry.",
"type": "string"
},
"token": {
"description": "A reference to a Dependabot secret containing an access token for this registry.",
"type": "string"
},
"replaces-base": {
"description": "For registries with type: python-index, if the boolean value is true, pip resolves dependencies by using the specified URL rather than the base URL of the Python Package Index (by default https://pypi.org/simple).",
"type": "boolean"
},
"organization": {
"description": "",
"type": "string"
},
"repo": {
"description": "",
"type": "string"
},
"auth-key": {
"description": "",
"type": "string"
},
"public-key-fingerprint": {
"description": "",
"type": "string"
},
"registry": {
"description": "The name of the cargo registry.",
"type": "string"
},
"tenant-id": {
"description": "The tenant ID for Azure OIDC authentication.",
"type": "string"
},
"client-id": {
"description": "The client ID for Azure OIDC authentication.",
"type": "string"
},
"jfrog-oidc-provider-name": {
"description": "The JFrog OIDC provider name for authentication.",
"type": "string"
},
"identity-mapping-name": {
"description": "The identity mapping name for JFrog OIDC authentication.",
"type": "string"
},
"audience": {
"description": "The audience for OIDC or AWS authentication.",
"type": "string"
},
"aws-region": {
"description": "The AWS region for AWS CodeArtifact authentication.",
"type": "string"
},
"account-id": {
"description": "The AWS account ID for AWS CodeArtifact authentication.",
"type": "string"
},
"role-name": {
"description": "The AWS role name for AWS CodeArtifact authentication.",
"type": "string"
},
"domain": {
"description": "The domain for AWS CodeArtifact authentication.",
"type": "string"
},
"domain-owner": {
"description": "The domain owner for AWS CodeArtifact authentication.",
"type": "string"
}
},
"required": ["type", "url"]
},
"minProperties": 1
},
Expand Down
2 changes: 1 addition & 1 deletion src/check_jsonschema/builtin_schemas/vendor/meltano.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
},
"requires_meltano": {
"type": "string",
"description": "A version speficier for the Meltano version required by this project. If the version of Meltano being used does not satisfy this requirement, Meltano will exit with an error.",
"description": "A version specifier for the Meltano version required by this project. If the version of Meltano being used does not satisfy this requirement, Meltano will exit with an error.",
"examples": [
">=3,<4",
">=3.6,<3.7"
Expand Down
19 changes: 15 additions & 4 deletions src/check_jsonschema/builtin_schemas/vendor/mergify.json
Original file line number Diff line number Diff line change
Expand Up @@ -2099,6 +2099,14 @@
"title": "Dependabot update type",
"type": "array"
},
"scope": {
"description": "The list of scopes associated with the pull request for merge queue batching.",
"items": {
"type": "string"
},
"title": "Scope",
"type": "array"
},
"commits": {
"description": "The list of commits of the pull request. The index 0 is the first commit, while -1 is the last commit.",
"items": {
Expand Down Expand Up @@ -2259,6 +2267,7 @@
"dependabot-dependency-name",
"dependabot-dependency-type",
"dependabot-update-type",
"scope",
"commits",
"current-datetime",
"updated-at",
Expand Down Expand Up @@ -2542,7 +2551,8 @@
"merge",
"rebase",
"squash",
"fast-forward"
"fast-forward",
"merge-batch"
],
"type": "string"
},
Expand All @@ -2551,7 +2561,7 @@
}
],
"default": null,
"description": "Merge method to use. If no value is set, Mergify uses the first authorized method available in the repository configuration.",
"description": "Merge method to use. If no value is set, Mergify uses the first authorized method available in the repository configuration.\n\nAdditionally, `merge-batch` merges the draft pull request prepared by the merge queue using a merge commit. This requires `batch_size > 1`.",
"title": "Merge Method"
},
"autosquash": {
Expand Down Expand Up @@ -2772,7 +2782,8 @@
"merge",
"rebase",
"squash",
"fast-forward"
"fast-forward",
"merge-batch"
],
"type": "string"
},
Expand All @@ -2781,7 +2792,7 @@
}
],
"default": null,
"description": "Merge method to use. If no value is set, Mergify uses the first authorized method available in the repository configuration.",
"description": "Merge method to use. If no value is set, Mergify uses the first authorized method available in the repository configuration.\n\nAdditionally, `merge-batch` merges the draft pull request prepared by the merge queue using a merge commit. This requires `batch_size > 1`.",
"title": "Merge Method"
},
"autosquash": {
Expand Down
Loading