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

.. vendor-insert-here

- Update vendored schemas: github-issue-forms, mergify, renovate (2026-03-29)
- Update vendored schemas: bitbucket-pipelines, buildkite, circle-ci,
github-issue-forms, mergify, renovate (2026-04-05)

0.37.1
------
Expand Down

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/check_jsonschema/builtin_schemas/vendor/buildkite.json
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@
"description": "A unique identifier for a step, must not resemble a UUID",
"examples": ["deploy-staging", "test-integration"],
"maxLength": 100,
"pattern": "^[a-zA-Z0-9_\\-:]+$",
"pattern": "^[a-zA-Z0-9_\\-:${}.,]+$",
"not": {
"pattern": "^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"
}
Expand Down
10 changes: 5 additions & 5 deletions src/check_jsonschema/builtin_schemas/vendor/circle-ci.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "CircleCI Config",
"definitions": {
"jobDefinition": {
"jobInvocation": {
"oneOf": [
{
"type": "string",
"markdownDescription": "A reference to a job defined elsewhere in the configuration, either in the `jobs` section or from an orb (e.g., `my-job` or `orb-name/job-name`)."
"markdownDescription": "An invocation of a job defined elsewhere in the configuration, either in the `jobs` section or from an orb (e.g., `my-job` or `orb-name/job-name`)."
},
{
"type": "object",
Expand Down Expand Up @@ -576,7 +576,7 @@
"pattern": "^[A-Za-z][A-Za-z\\s\\d_-]*$"
},
"additionalProperties": {
"$ref": "#/definitions/jobDefinition"
"$ref": "#/definitions/jobInvocation"
}
},
"commands": {
Expand Down Expand Up @@ -2380,7 +2380,7 @@
"pattern": "^[A-Za-z][A-Za-z\\s\\d_-]*$"
},
"additionalProperties": {
"$ref": "#/definitions/jobDefinition"
"$ref": "#/definitions/jobInvocation"
}
},
"orbs": {
Expand Down Expand Up @@ -2411,7 +2411,7 @@
"pattern": "^[A-Za-z][A-Za-z\\s\\d_-]*$"
},
"additionalProperties": {
"$ref": "#/definitions/jobDefinition"
"$ref": "#/definitions/jobInvocation"
}
},
"commands": {
Expand Down
26 changes: 12 additions & 14 deletions src/check_jsonschema/builtin_schemas/vendor/mergify.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,8 @@
"type": "null"
}
],
"default": null
"default": null,
"deprecated": true
},
"dismiss_reviews": {
"anyOf": [
Expand Down Expand Up @@ -2504,6 +2505,7 @@
}
],
"default": null,
"deprecated": true,
"description": "If set to `fast-forward`, Mergify will merge the draft pull request instead of merging the original pull request that has been checked. This only works when `merge_method` is set to `merge`.",
"title": "Queue Branch Merge Method"
},
Expand Down Expand Up @@ -2549,7 +2551,7 @@
}
],
"default": null,
"description": "Merge method to use. If no value is set, Mergify uses the first authorized method available in the repository configuration. `fast-forward` is not supported on draft PR (`max_parallel_checks > 1`, or `batch_size > 1`, or two-step CI).",
"description": "Merge method to use. If no value is set, Mergify uses the first authorized method available in the repository configuration.",
"title": "Merge Method"
},
"autosquash": {
Expand Down Expand Up @@ -2733,6 +2735,7 @@
}
],
"default": null,
"deprecated": true,
"description": "If set to `fast-forward`, Mergify will merge the draft pull request instead of merging the original pull request that has been checked. This only works when `merge_method` is set to `merge`.",
"title": "Queue Branch Merge Method"
},
Expand Down Expand Up @@ -2778,7 +2781,7 @@
}
],
"default": null,
"description": "Merge method to use. If no value is set, Mergify uses the first authorized method available in the repository configuration. `fast-forward` is not supported on draft PR (`max_parallel_checks > 1`, or `batch_size > 1`, or two-step CI).",
"description": "Merge method to use. If no value is set, Mergify uses the first authorized method available in the repository configuration.",
"title": "Merge Method"
},
"autosquash": {
Expand Down Expand Up @@ -3077,17 +3080,12 @@
"title": "Source"
},
"merge_queue_scope": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": "merge-queue",
"description": "Optional scope name automatically applied to merge queue PRs. Set to `None` to disable.",
"title": "Merge Queue Scope"
"description": "Scope name automatically applied to merge queue PRs.",
"minLength": 2,
"pattern": "^[A-Za-z0-9_-]+$",
"title": "Merge Queue Scope",
"type": "string"
}
},
"title": "Scopes",
Expand All @@ -3104,7 +3102,7 @@
}
},
"propertyNames": {
"minLength": 1
"minLength": 2
},
"title": "Files",
"type": "object"
Expand Down
9 changes: 7 additions & 2 deletions src/check_jsonschema/builtin_schemas/vendor/renovate.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"$id": "https://docs.renovatebot.com/renovate-schema.json",
"title": "JSON schema for Renovate 43.99.0 config files (https://renovatebot.com/)",
"title": "JSON schema for Renovate 43.104.3 config files (https://renovatebot.com/)",
"$schema": "http://json-schema.org/draft-07/schema#",
"x-renovate-version": "43.99.0",
"x-renovate-version": "43.104.3",
"allowComments": true,
"type": "object",
"properties": {
Expand Down Expand Up @@ -9242,6 +9242,11 @@
"reportPath"
]
},
{
"required": [
"reportFormatting"
]
},
{
"required": [
"force"
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7bab5629e59623ca24ae370eaf40ec9f7527c8a0d925841c2480f7bb5bf8e0bd
9476921719f1f606ac6e377ca5b20a099e1c258a2397f1cdea0b397cfce099cf
Original file line number Diff line number Diff line change
@@ -1 +1 @@
fd35bfe91d451cad777c39386bf208005087e5577ddf2cd62024cb8622396f5b
56f3092554fd63e7d9653ee752d86d05c269617d4f9f9dfa67c7a18cb17476cf
Original file line number Diff line number Diff line change
@@ -1 +1 @@
01d9e61d0e1f01bf4e6b7877e99a68edea71e8316c2822d69f54a5dffff318e4
26ed7f80824f343bbb4f2e713ec137928ece0499da83d9f6490b7da128f444c9
Original file line number Diff line number Diff line change
@@ -1 +1 @@
123b6c436e2b25427e08a3ecc4a4983c8a0b275cf734ef1905b4993de8019b82
bf0d24b4708fd1437f715f98868bc420b075d13d535ce0d721f88ade8897a408
Original file line number Diff line number Diff line change
@@ -1 +1 @@
dc07fcc4ae5d58f8de1257a84b9ee230bafdd42a33b4a799ddb9e08c27bb2973
7ae3946ed810928833dd1fa17669aca047903a7a5a3a04feb3f94003f6902bbe