Skip to content

Commit 694db2c

Browse files
sirosengithub-actions[bot]
authored andcommitted
[vendor-schemas] automated update
1 parent 0e5b0dc commit 694db2c

File tree

13 files changed

+5716
-1691
lines changed

13 files changed

+5716
-1691
lines changed

CHANGELOG.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ Unreleased
1010

1111
.. vendor-insert-here
1212
13+
- Update vendored schemas: circle-ci, dependabot, meltano, mergify, renovate, snapcraft
14+
(2025-10-26)
15+
1316
0.34.1
1417
------
1518

src/check_jsonschema/builtin_schemas/vendor/circle-ci.json

Lines changed: 587 additions & 618 deletions
Large diffs are not rendered by default.

src/check_jsonschema/builtin_schemas/vendor/dependabot.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1077,6 +1077,7 @@
10771077
"git",
10781078
"hex-organization",
10791079
"hex-repository",
1080+
"helm-registry",
10801081
"maven-repository",
10811082
"npm-registry",
10821083
"nuget-feed",

src/check_jsonschema/builtin_schemas/vendor/meltano.json

Lines changed: 35 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@
77
"additionalProperties": false,
88
"properties": {
99
"version": {
10-
"const": 1
10+
"const": 1,
11+
"deprecated": true,
12+
"description": "DEPRECATED: The meltano.yml version field is deprecated and will be removed in a future release. Please remove it from your meltano.yml file. To specify Meltano version requirements, use 'requires_meltano' instead."
1113
},
1214
"annotations": {
1315
"$ref": "#/$defs/annotations"
@@ -25,6 +27,14 @@
2527
"type": "string",
2628
"description": "A globally unique project identifier. Defaults to a Meltano-generated unique GUID for each project."
2729
},
30+
"requires_meltano": {
31+
"type": "string",
32+
"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.",
33+
"examples": [
34+
">=3,<4",
35+
">=3.6,<3.7"
36+
]
37+
},
2838
"database_uri": {
2939
"type": "string",
3040
"description": "A database URI for the project system database. Defaults to a SQLite file stored at .meltano/meltano.db",
@@ -536,6 +546,14 @@
536546
"requires": {
537547
"$ref": "#/$defs/requires"
538548
},
549+
"requires_meltano": {
550+
"type": "string",
551+
"description": "A version specifier for the Meltano version required by this plugin. If the version of Meltano being used does not satisfy this requirement, Meltano will exit with an error.",
552+
"examples": [
553+
">=3,<4",
554+
">=3.6,<3.7"
555+
]
556+
},
539557
"env": {
540558
"$ref": "#/$defs/env"
541559
}
@@ -763,6 +781,22 @@
763781
},
764782
{
765783
"$ref": "#/$defs/plugins/mapper_specific"
784+
},
785+
{
786+
"type": "object",
787+
"properties": {
788+
"capabilities": {
789+
"type": "array",
790+
"items": {
791+
"type": "string",
792+
"enum": [
793+
"about",
794+
"stream-maps",
795+
"structured-logging"
796+
]
797+
}
798+
}
799+
}
766800
}
767801
],
768802
"unevaluatedProperties": false

src/check_jsonschema/builtin_schemas/vendor/mergify.json

Lines changed: 131 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -873,6 +873,7 @@
873873
"type": "object"
874874
},
875875
"DisabledDict": {
876+
"additionalProperties": false,
876877
"properties": {
877878
"reason": {
878879
"title": "Reason",
@@ -995,6 +996,28 @@
995996
"title": "EditActionModel",
996997
"type": "object"
997998
},
999+
"FileFilters": {
1000+
"properties": {
1001+
"include": {
1002+
"description": "Glob patterns of files to include for this scope. Empty means 'include everything' before exclusions. Examples: ('src/**/*.py', 'Makefile')",
1003+
"items": {
1004+
"type": "string"
1005+
},
1006+
"title": "Include",
1007+
"type": "array"
1008+
},
1009+
"exclude": {
1010+
"description": "Glob patterns of files to exclude from this scope. Evaluated after `include` and takes precedence. Examples: ('**/tests/**', '*.md')",
1011+
"items": {
1012+
"type": "string"
1013+
},
1014+
"title": "Exclude",
1015+
"type": "array"
1016+
}
1017+
},
1018+
"title": "FileFilters",
1019+
"type": "object"
1020+
},
9981021
"GhaActionModel": {
9991022
"additionalProperties": false,
10001023
"properties": {
@@ -1284,7 +1307,7 @@
12841307
"title": "MergeProtectionRulesModel",
12851308
"type": "array"
12861309
},
1287-
"MergeProtectionsModel": {
1310+
"MergeProtections": {
12881311
"additionalProperties": false,
12891312
"properties": {
12901313
"reporting_method": {
@@ -1304,10 +1327,10 @@
13041327
"type": "boolean"
13051328
}
13061329
},
1307-
"title": "MergeProtectionsModel",
1330+
"title": "MergeProtections",
13081331
"type": "object"
13091332
},
1310-
"MergeQueueModel": {
1333+
"MergeQueue": {
13111334
"additionalProperties": false,
13121335
"properties": {
13131336
"max_parallel_checks": {
@@ -1340,9 +1363,32 @@
13401363
"default": "queued",
13411364
"description": "The label to add on pull requests when they are added to the merge queue.",
13421365
"title": "Queued Label"
1366+
},
1367+
"dequeued_label": {
1368+
"anyOf": [
1369+
{
1370+
"type": "string"
1371+
},
1372+
{
1373+
"type": "null"
1374+
}
1375+
],
1376+
"default": "dequeued",
1377+
"description": "The label to add on pull requests when they are removed from the merge queue.",
1378+
"title": "Dequeued Label"
1379+
},
1380+
"mode": {
1381+
"default": "serial",
1382+
"description": "Defines how the merge queue schedules pull requests.\n- `serial`: PRs are tested cumulatively.\n- `parallel`: PRs whose scopes don't overlap are tested in parallel.\n",
1383+
"enum": [
1384+
"serial",
1385+
"parallel"
1386+
],
1387+
"title": "Mode",
1388+
"type": "string"
13431389
}
13441390
},
1345-
"title": "MergeQueueModel",
1391+
"title": "MergeQueue",
13461392
"type": "object"
13471393
},
13481394
"NegationCondition": {
@@ -2347,7 +2393,7 @@
23472393
},
23482394
"merge_conditions": {
23492395
"$ref": "#/$defs/QueueRuleMergeConditionsModel",
2350-
"description": "The list of conditions to match to get the queued pull request merged. This automatically includes the `queue_conditions`. In case of speculative merge pull request, the merge conditions starting by check- are evaluated against the temporary pull request instead of the original one."
2396+
"description": "The list of conditions to match to get the queued pull request merged. In case of draft pull request, the merge conditions for checks are evaluated against the temporary pull request instead of the original one."
23512397
},
23522398
"branch_protection_injection_mode": {
23532399
"default": "queue",
@@ -2465,7 +2511,7 @@
24652511
}
24662512
],
24672513
"default": null,
2468-
"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 queues with `max_parallel_checks > 1`, `batch_size > 1`, or with `allow_inplace_checks` set to `false`.",
2514+
"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).",
24692515
"title": "Merge Method"
24702516
},
24712517
"autosquash": {
@@ -2565,7 +2611,7 @@
25652611
},
25662612
"merge_conditions": {
25672613
"$ref": "#/$defs/QueueRuleMergeConditionsModel",
2568-
"description": "The list of conditions to match to get the queued pull request merged. This automatically includes the `queue_conditions`. In case of speculative merge pull request, the merge conditions starting by check- are evaluated against the temporary pull request instead of the original one."
2614+
"description": "The list of conditions to match to get the queued pull request merged. In case of draft pull request, the merge conditions for checks are evaluated against the temporary pull request instead of the original one."
25692615
},
25702616
"branch_protection_injection_mode": {
25712617
"default": "queue",
@@ -2683,7 +2729,7 @@
26832729
}
26842730
],
26852731
"default": null,
2686-
"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 queues with `max_parallel_checks > 1`, `batch_size > 1`, or with `allow_inplace_checks` set to `false`.",
2732+
"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).",
26872733
"title": "Merge Method"
26882734
},
26892735
"autosquash": {
@@ -2849,7 +2895,6 @@
28492895
},
28502896
{
28512897
"additionalProperties": {
2852-
"default": 1,
28532898
"maximum": 65535,
28542899
"minimum": 1,
28552900
"type": "integer"
@@ -2871,7 +2916,6 @@
28712916
},
28722917
{
28732918
"additionalProperties": {
2874-
"default": 1,
28752919
"maximum": 65535,
28762920
"minimum": 1,
28772921
"type": "integer"
@@ -2893,7 +2937,6 @@
28932937
},
28942938
{
28952939
"additionalProperties": {
2896-
"default": 1,
28972940
"maximum": 65535,
28982941
"minimum": 1,
28992942
"type": "integer"
@@ -2963,6 +3006,78 @@
29633006
"title": "RuleConditionModel",
29643007
"type": "string"
29653008
},
3009+
"Scopes": {
3010+
"additionalProperties": false,
3011+
"properties": {
3012+
"source": {
3013+
"anyOf": [
3014+
{
3015+
"$ref": "#/$defs/SourceFiles"
3016+
},
3017+
{
3018+
"$ref": "#/$defs/SourceManual"
3019+
},
3020+
{
3021+
"type": "null"
3022+
}
3023+
],
3024+
"default": null,
3025+
"description": "Where scopes come from. `files` uses file-pattern rules (`gha-mergify-ci-scopes` must have been setup on your pull request); `manual` uses scopes sent via API or `mergify scopes-send`; `None` disables scoping.",
3026+
"title": "Source"
3027+
},
3028+
"merge_queue_scope": {
3029+
"anyOf": [
3030+
{
3031+
"type": "string"
3032+
},
3033+
{
3034+
"type": "null"
3035+
}
3036+
],
3037+
"default": "merge-queue",
3038+
"description": "Optional scope name automatically applied to merge queue PRs. Set to `None` to disable.",
3039+
"title": "Merge Queue Scope"
3040+
}
3041+
},
3042+
"title": "Scopes",
3043+
"type": "object"
3044+
},
3045+
"SourceFiles": {
3046+
"properties": {
3047+
"files": {
3048+
"description": "Mapping of scope name to its file filters. A file belongs to a scope if it matches the scope's `include` patterns and not its `exclude` patterns.",
3049+
"patternProperties": {
3050+
"^[A-Za-z0-9_-]+$": {
3051+
"$ref": "#/$defs/FileFilters"
3052+
}
3053+
},
3054+
"propertyNames": {
3055+
"minLength": 1
3056+
},
3057+
"title": "Files",
3058+
"type": "object"
3059+
}
3060+
},
3061+
"required": [
3062+
"files"
3063+
],
3064+
"title": "SourceFiles",
3065+
"type": "object"
3066+
},
3067+
"SourceManual": {
3068+
"properties": {
3069+
"manual": {
3070+
"description": "Scopes are manually sent via API or `mergify scopes-send`",
3071+
"title": "Manual",
3072+
"type": "null"
3073+
}
3074+
},
3075+
"required": [
3076+
"manual"
3077+
],
3078+
"title": "SourceManual",
3079+
"type": "object"
3080+
},
29663081
"SquashActionModel": {
29673082
"additionalProperties": false,
29683083
"properties": {
@@ -3053,6 +3168,9 @@
30533168
"defaults": {
30543169
"$ref": "#/$defs/DefaultsRulesModel"
30553170
},
3171+
"scopes": {
3172+
"$ref": "#/$defs/Scopes"
3173+
},
30563174
"commands_restrictions": {
30573175
"$ref": "#/$defs/CommandsRestrictionsRulesModel"
30583176
},
@@ -3072,10 +3190,10 @@
30723190
"$ref": "#/$defs/PriorityRulesModel"
30733191
},
30743192
"merge_queue": {
3075-
"$ref": "#/$defs/MergeQueueModel"
3193+
"$ref": "#/$defs/MergeQueue"
30763194
},
30773195
"merge_protections_settings": {
3078-
"$ref": "#/$defs/MergeProtectionsModel"
3196+
"$ref": "#/$defs/MergeProtections"
30793197
}
30803198
},
30813199
"$schema": "https://json-schema.org/draft/2020-12/schema",

0 commit comments

Comments
 (0)