Skip to content

Commit 11fa839

Browse files
authored
Merge pull request #375 from python-jsonschema/vendor-schemas-auto
Changes by create-pull-request action
2 parents 736aa79 + 5801cae commit 11fa839

File tree

7 files changed

+122
-15
lines changed

7 files changed

+122
-15
lines changed

CHANGELOG.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Unreleased
1010

1111
.. vendor-insert-here
1212
13-
- Update vendored schemas (2023-12-22)
13+
- Update vendored schemas (2024-01-25)
1414

1515
0.27.3
1616
------

src/check_jsonschema/builtin_schemas/vendor/dependabot.json

Lines changed: 18 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -451,6 +451,7 @@
451451
"Europe/Kaliningrad",
452452
"Europe/Kiev",
453453
"Europe/Kirov",
454+
"Europe/Kyiv",
454455
"Europe/Lisbon",
455456
"Europe/Ljubljana",
456457
"Europe/London",
@@ -650,6 +651,7 @@
650651
"bundler",
651652
"cargo",
652653
"composer",
654+
"devcontainers",
653655
"docker",
654656
"elm",
655657
"gitsubmodule",
@@ -890,13 +892,22 @@
890892
"default": "auto"
891893
},
892894
"registries": {
893-
"type": "array",
894-
"items": {
895-
"type": "string",
896-
"minLength": 1
897-
},
898-
"uniqueItems": true,
899-
"minItems": 1
895+
"$comment": "'registries' must be either an array of strings, or the string constant '*'.",
896+
"oneOf": [
897+
{
898+
"type": "array",
899+
"items": {
900+
"type": "string",
901+
"minLength": 1
902+
},
903+
"uniqueItems": true,
904+
"minItems": 1
905+
},
906+
{
907+
"type": "string",
908+
"const": "*"
909+
}
910+
]
900911
},
901912
"reviewers": {
902913
"type": "array",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
61026739f963999c8676b1f5c564c88cf7de4008c14f162d5e07cc953c6d816f
1+
f5e0bc96fc566d0e37aec0bf0c80308a5a5ba49683c18f7c6ce983e5326be27c

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

Lines changed: 64 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,9 @@
154154
"always",
155155
"never"
156156
]
157+
},
158+
"auto_cancel": {
159+
"$ref": "#/definitions/workflowAutoCancel"
157160
}
158161
},
159162
"additionalProperties": false
@@ -528,6 +531,12 @@
528531
"type": "string",
529532
"minLength": 1,
530533
"description": "Image architecture to pull."
534+
},
535+
"user": {
536+
"type": "string",
537+
"minLength": 1,
538+
"maxLength": 255,
539+
"description": "Username or UID to use for the container."
531540
}
532541
}
533542
},
@@ -603,6 +612,12 @@
603612
"type": "string",
604613
"minLength": 1,
605614
"description": "Image architecture to pull."
615+
},
616+
"user": {
617+
"type": "string",
618+
"minLength": 1,
619+
"maxLength": 255,
620+
"description": "Username or UID to use for the container."
606621
}
607622
}
608623
},
@@ -735,6 +750,30 @@
735750
}
736751
]
737752
},
753+
"gcp_secret_manager": {
754+
"type": "object",
755+
"markdownDescription": "Defines the secret version to be fetched from GCP Secret Manager. Name refers to the secret name in GCP secret manager. Version refers to the desired secret version (defaults to 'latest').",
756+
"properties": {
757+
"name": {
758+
"type": "string"
759+
},
760+
"version": {
761+
"oneOf": [
762+
{
763+
"type": "string"
764+
},
765+
{
766+
"type": "integer"
767+
}
768+
],
769+
"default": "version"
770+
}
771+
},
772+
"required": [
773+
"name"
774+
],
775+
"additionalProperties": false
776+
},
738777
"azure_key_vault": {
739778
"type": "object",
740779
"properties": {
@@ -757,7 +796,7 @@
757796
},
758797
"token": {
759798
"type": "string",
760-
"description": "Specifies the JWT variable that should be used to authenticate with Hashicorp Vault."
799+
"description": "Specifies the JWT variable that should be used to authenticate with the secret provider."
761800
}
762801
},
763802
"anyOf": [
@@ -770,8 +809,18 @@
770809
"required": [
771810
"azure_key_vault"
772811
]
812+
},
813+
{
814+
"required": [
815+
"gcp_secret_manager"
816+
]
773817
}
774818
],
819+
"dependencies": {
820+
"gcp_secret_manager": [
821+
"token"
822+
]
823+
},
775824
"additionalProperties": false
776825
}
777826
}
@@ -944,7 +993,8 @@
944993
},
945994
"workflowAutoCancel": {
946995
"type": "object",
947-
"markdownDescription": "Define the rules for when pipeline should be automatically cancelled.",
996+
"description": "Define the rules for when pipeline should be automatically cancelled.",
997+
"additionalProperties": false,
948998
"properties": {
949999
"on_job_failure": {
9501000
"markdownDescription": "Define which jobs to stop after a job fails.",
@@ -954,6 +1004,15 @@
9541004
"none",
9551005
"all"
9561006
]
1007+
},
1008+
"on_new_commit": {
1009+
"markdownDescription": "Configure the behavior of the auto-cancel redundant pipelines feature. [Learn More](https://docs.gitlab.com/ee/ci/yaml/#workflowauto_cancelon_new_commit)",
1010+
"type": "string",
1011+
"enum": [
1012+
"conservative",
1013+
"interruptible",
1014+
"none"
1015+
]
9571016
}
9581017
}
9591018
},
@@ -1691,6 +1750,9 @@
16911750
"project",
16921751
"ref"
16931752
]
1753+
},
1754+
{
1755+
"$ref": "#/definitions/!reference"
16941756
}
16951757
]
16961758
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
83944ef73637b1a27fd3e935ec12217004885ae1488d25e58e9e006b5dd4bb1b
1+
334882a680fa267daf0ab239bc728e32aef5913cb9f0aa68c0b7e5bb8b3cb1b0

src/check_jsonschema/builtin_schemas/vendor/renovate.json

Lines changed: 36 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,16 @@
4242
"type": "boolean",
4343
"default": false
4444
},
45+
"allowedHeaders": {
46+
"description": "List of allowed patterns for header names in repository hostRules config.",
47+
"type": "array",
48+
"items": {
49+
"type": "string"
50+
},
51+
"default": [
52+
"X-*"
53+
]
54+
},
4555
"allowedPostUpgradeCommands": {
4656
"description": "A list of regular expressions that decide which post-upgrade tasks are allowed.",
4757
"type": "array",
@@ -887,7 +897,7 @@
887897
"dockerSidecarImage": {
888898
"description": "Change this value to override the default Renovate sidecar image.",
889899
"type": "string",
890-
"default": "ghcr.io/containerbase/sidecar:9.30.9"
900+
"default": "ghcr.io/containerbase/sidecar:9.31.5"
891901
},
892902
"dockerUser": {
893903
"description": "Set the `UID` and `GID` for Docker-based binaries if you use `binarySource=docker`.",
@@ -1170,7 +1180,7 @@
11701180
"type": "object",
11711181
"default": {
11721182
"fileMatch": [
1173-
"(^|/)(workflow-templates|\\.(?:github|gitea|forgejo)/workflows)/[^/]+\\.ya?ml$",
1183+
"(^|/)(workflow-templates|\\.(?:github|gitea|forgejo)/(?:workflows|actions))/.+\\.ya?ml$",
11741184
"(^|/)action\\.ya?ml$"
11751185
]
11761186
},
@@ -1424,6 +1434,11 @@
14241434
"type": "boolean",
14251435
"default": false
14261436
},
1437+
"headers": {
1438+
"description": "Put fields to be forwarded to the HTTP request headers in the headers config option.",
1439+
"type": "object",
1440+
"$ref": "#"
1441+
},
14271442
"hostType": {
14281443
"description": "hostType for a package rule. Can be a platform name or a datasource name.",
14291444
"type": "string"
@@ -1850,6 +1865,14 @@
18501865
},
18511866
"$ref": "#"
18521867
},
1868+
"ocb": {
1869+
"description": "Configuration object for the ocb manager",
1870+
"type": "object",
1871+
"default": {
1872+
"fileMatch": []
1873+
},
1874+
"$ref": "#"
1875+
},
18531876
"onboarding": {
18541877
"description": "Require a Configuration PR first.",
18551878
"type": "boolean"
@@ -2413,6 +2436,7 @@
24132436
"bitbucket",
24142437
"bitbucket-server",
24152438
"codecommit",
2439+
"gerrit",
24162440
"gitea",
24172441
"github",
24182442
"gitlab",
@@ -2757,6 +2781,10 @@
27572781
],
27582782
"default": "auto"
27592783
},
2784+
"redisPrefix": {
2785+
"description": "Key prefix for redis cache entries.",
2786+
"type": "string"
2787+
},
27602788
"redisUrl": {
27612789
"description": "If set, this Redis URL will be used for caching instead of the file system.",
27622790
"type": "string"
@@ -3144,6 +3172,11 @@
31443172
],
31453173
"default": "none"
31463174
},
3175+
"useCloudMetadataServices": {
3176+
"description": "If `false`, Renovate does not try to access cloud metadata services.",
3177+
"type": "boolean",
3178+
"default": true
3179+
},
31473180
"userStrings": {
31483181
"description": "User-facing strings for the Renovate comment when a PR is closed.",
31493182
"type": "object",
@@ -3210,6 +3243,7 @@
32103243
"redhat",
32113244
"regex",
32123245
"rez",
3246+
"rpm",
32133247
"ruby",
32143248
"semver",
32153249
"semver-coerced",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4d4972d8b82117731009c29b9472ef894a49a2f0ca0d360a9d346de157f9b869
1+
e12db723d3b028ca5135df355b0a97e0e979e0dbb012ea5a443ccae9b53609e8

0 commit comments

Comments
 (0)