From d7b99a587799e34c9534e4ba793aad65b4f78d55 Mon Sep 17 00:00:00 2001 From: Nikita Indik Date: Thu, 21 Dec 2023 12:39:16 +0100 Subject: [PATCH] [Security Solution] Enable the feature flag for JSON diffing in prebuilt rules (#173368) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Ticket:** https://github.com/elastic/kibana/issues/169160 ## Summary Sets the `jsonPrebuiltRulesDiffingEnabled` to `true` to enable the new "Updates" tab in prebuilt rules flyout. ### IMPORTANT: Merge only once acceptance and exploratory testing are passed! Scherm­afbeelding 2023-12-13 om 17 37 07 Co-authored-by: Georgii Gorbachev --- .../plugins/security_solution/common/experimental_features.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x-pack/plugins/security_solution/common/experimental_features.ts b/x-pack/plugins/security_solution/common/experimental_features.ts index a9f3affba56d7..8c16307ab5b8c 100644 --- a/x-pack/plugins/security_solution/common/experimental_features.ts +++ b/x-pack/plugins/security_solution/common/experimental_features.ts @@ -162,7 +162,7 @@ export const allowedExperimentalValues = Object.freeze({ * This tab shows the JSON diff between the installed prebuilt rule * version and the latest available version. */ - jsonPrebuiltRulesDiffingEnabled: false, + jsonPrebuiltRulesDiffingEnabled: true, }); type ExperimentalConfigKeys = Array;