From b4d1d73ff42d3b805d78a5587b7a0b4793eb5427 Mon Sep 17 00:00:00 2001 From: Jan Calanog Date: Fri, 27 Jun 2025 10:55:56 +0200 Subject: [PATCH] Remove ProductLifecycle.Deperecated from deprecated list --- src/Elastic.Markdown/Myst/FrontMatter/Applicability.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Elastic.Markdown/Myst/FrontMatter/Applicability.cs b/src/Elastic.Markdown/Myst/FrontMatter/Applicability.cs index cb69e51e5..16f5457c4 100644 --- a/src/Elastic.Markdown/Myst/FrontMatter/Applicability.cs +++ b/src/Elastic.Markdown/Myst/FrontMatter/Applicability.cs @@ -190,7 +190,7 @@ public static bool TryParse(string? value, IList<(Severity, string)> diagnostics }; // TODO emit as error when all docs have been updated - if (lifecycle is ProductLifecycle.Planned or ProductLifecycle.Deprecated or ProductLifecycle.Development) + if (lifecycle is ProductLifecycle.Planned or ProductLifecycle.Development) diagnostics.Add((Severity.Hint, $"The '{lookup}' lifecycle is deprecated and will be removed in a future release.")); var version = tokens.Length < 2