From 15b0c88826318ed0158444f3bbd4941f1cef30e4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 30 Oct 2025 19:31:07 -0500 Subject: [PATCH] Fleet UI: Update osquery version options (#34723) Automated update of MIN_OSQUERY_VERSION_OPTIONS with any new osquery release. (Note: This automatic update is the solution to issue #21431) Co-authored-by: RachelElysia --- frontend/utilities/constants.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/utilities/constants.tsx b/frontend/utilities/constants.tsx index cc5f1edb51..ed51b9d221 100644 --- a/frontend/utilities/constants.tsx +++ b/frontend/utilities/constants.tsx @@ -86,6 +86,7 @@ export const MAX_OSQUERY_SCHEDULED_QUERY_INTERVAL = 604800; export const MIN_OSQUERY_VERSION_OPTIONS = [ { label: "All", value: "" }, + { label: "5.20.0 +", value: "5.20.0" }, { label: "5.19.0 +", value: "5.19.0" }, { label: "5.18.1 +", value: "5.18.1" }, { label: "5.18.0 +", value: "5.18.0" },