Skip to content

Commit 71ecfd6

Browse files
authored
feat: add Renovate 42's JSON Schema (#5324)
Now we've released Renovate 43, we'll store the 42.95.1 JSON schema as an older version for folks to access.
1 parent e1c0e82 commit 71ecfd6

File tree

5 files changed

+25821
-1
lines changed

5 files changed

+25821
-1
lines changed

src/api/json/catalog.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5485,6 +5485,7 @@
54855485
],
54865486
"url": "https://docs.renovatebot.com/renovate-schema.json",
54875487
"versions": {
5488+
"42": "https://www.schemastore.org/renovate-42.json",
54885489
"41": "https://www.schemastore.org/renovate-41.json",
54895490
"40": "https://www.schemastore.org/renovate-40.json",
54905491
"39": "https://www.schemastore.org/renovate-39.json"
@@ -5496,14 +5497,18 @@
54965497
"fileMatch": [],
54975498
"url": "https://docs.renovatebot.com/renovate-global-schema.json",
54985499
"versions": {
5500+
"42": "https://www.schemastore.org/renovate-global-schema-42.json",
54995501
"41": "https://www.schemastore.org/renovate-global-schema-41.json"
55005502
}
55015503
},
55025504
{
55035505
"name": "Renovate inherited configuration",
55045506
"description": "Renovate configuration file (with Inherit Config options). Documentation: https://docs.renovatebot.com/configuration-options",
55055507
"fileMatch": [],
5506-
"url": "https://docs.renovatebot.com/renovate-inherited-schema.json"
5508+
"url": "https://docs.renovatebot.com/renovate-inherited-schema.json",
5509+
"versions": {
5510+
"42": "https://www.schemastore.org/renovate-inherited-schema-42.json"
5511+
}
55075512
},
55085513
{
55095514
"name": "RenderCV",

src/schema-validation.jsonc

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,10 @@
190190
"renovate-39.json",
191191
"renovate-40.json",
192192
"renovate-41.json",
193+
"renovate-42.json",
193194
"renovate-global-schema-41.json",
195+
"renovate-global-schema-42.json",
196+
"renovate-inherited-schema-42.json",
194197
"resjson.json",
195198
"sarif-1.0.0.json",
196199
"size-limit.json",
@@ -1210,9 +1213,18 @@
12101213
"renovate-41.json": {
12111214
"unknownKeywords": ["allowComments", "x-renovate-version"]
12121215
},
1216+
"renovate-42.json": {
1217+
"unknownKeywords": ["allowComments", "x-renovate-version"]
1218+
},
12131219
"renovate-global-schema-41.json": {
12141220
"unknownKeywords": ["allowComments", "x-renovate-version"]
12151221
},
1222+
"renovate-global-schema-42.json": {
1223+
"unknownKeywords": ["allowComments", "x-renovate-version"]
1224+
},
1225+
"renovate-inherited-schema-42.json": {
1226+
"unknownKeywords": ["allowComments", "x-renovate-version"]
1227+
},
12161228
"rc3-collection-0.0.3.json": {
12171229
"externalSchema": ["rc3-auth-0.0.3.json"]
12181230
},

0 commit comments

Comments
 (0)