From 4db8c4381b25924319b1aa14b4b8d7ea1a3e63f1 Mon Sep 17 00:00:00 2001 From: Dj Walker-Morgan Date: Wed, 8 Jan 2025 16:25:04 +0000 Subject: [PATCH] Made addresses optional, added variants of bug-fix Signed-off-by: Dj Walker-Morgan --- tools/automation/generators/relgen/relnote-schema.json | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tools/automation/generators/relgen/relnote-schema.json b/tools/automation/generators/relgen/relnote-schema.json index 567bdc638cd..ada5b489615 100644 --- a/tools/automation/generators/relgen/relnote-schema.json +++ b/tools/automation/generators/relgen/relnote-schema.json @@ -79,11 +79,11 @@ "description": "Type of release note - required.", "anyOf": [ { - "enum": ["Feature", "Enhancement", "Change", "Bug fix", "Bug Fix", "Deprecation", "Security", "Other"], + "enum": ["Feature", "Enhancement", "Change", "Bug fix", "Bug Fix", "Bug-Fix", "Bug-fix", "Deprecation", "Security", "Other"], "type": "string" }, { - "enum": ["feature", "enhancement", "change", "bug fix", "deprecation", "security", "other"], + "enum": ["feature", "enhancement", "change", "bug fix","bug-fix", "deprecation", "security", "other"], "type": "string" } ] @@ -104,7 +104,6 @@ }, "required": [ "relnote", - "addresses", "type", "impact" ]