From 4bb84eff9f7fdc080e1800fd095c4d17b64266e7 Mon Sep 17 00:00:00 2001 From: aeneasr <3372410+aeneasr@users.noreply.github.com> Date: Thu, 15 Oct 2020 10:49:48 +0000 Subject: [PATCH] autogen: add v0.5.0-alpha.1.pre.1 to version.schema.json --- .schema/version.schema.json | 46 ++++++++++++++++++++++++------------- 1 file changed, 30 insertions(+), 16 deletions(-) diff --git a/.schema/version.schema.json b/.schema/version.schema.json index 0aed3f8f78c..73822f33227 100644 --- a/.schema/version.schema.json +++ b/.schema/version.schema.json @@ -1,22 +1,36 @@ { - "$id": "https://github.com/ory/kratos/.schema/versions.config.schema.json", - "$schema": "https://raw.githubusercontent.com/ory/cli/v0.0.21/.schema/version_meta.schema.json#", - "title": "All Versions for ORY Kratos Configuration", - "type": "object", - "oneOf": [ - { - "allOf": [ + "$id": "https://github.com/ory/kratos/.schema/versions.config.schema.json", + "$schema": "https://raw.githubusercontent.com/ory/cli/v0.0.21/.schema/version_meta.schema.json#", + "title": "All Versions for ORY Kratos Configuration", + "type": "object", + "oneOf": [ { - "properties": { - "version": { - "const": "v0.4.6-alpha.1" - } - } + "allOf": [ + { + "properties": { + "version": { + "const": "v0.4.6-alpha.1" + } + } + }, + { + "$ref": "https://raw.githubusercontent.com/ory/kratos/v0.4.6-alpha.1/.schema/config.schema.json" + } + ] }, { - "$ref": "https://raw.githubusercontent.com/ory/kratos/v0.4.6-alpha.1/.schema/config.schema.json" + "allOf": [ + { + "properties": { + "version": { + "const": "v0.5.0-alpha.1.pre.1" + } + } + }, + { + "$ref": "https://raw.githubusercontent.com/ory/kratos/v0.5.0-alpha.1.pre.1/.schema/config.schema.json" + } + ] } - ] - } - ] + ] }