From 2aaf8b0998da4d50571c265587a3d46ec23c0330 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 30 Oct 2024 17:24:24 -0700 Subject: [PATCH] Fleet UI: Update osquery version options (#23426) 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 | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/frontend/utilities/constants.tsx b/frontend/utilities/constants.tsx index b05ee602ea..78fecba0ce 100644 --- a/frontend/utilities/constants.tsx +++ b/frontend/utilities/constants.tsx @@ -84,6 +84,10 @@ export const MAX_OSQUERY_SCHEDULED_QUERY_INTERVAL = 604800; export const MIN_OSQUERY_VERSION_OPTIONS = [ { label: "All", value: "" }, + { label: "5.13.1 +", value: "5.13.1" }, + { label: "5.12.2 +", value: "5.12.2" }, + { label: "5.12.1 +", value: "5.12.1" }, + { label: "5.11.0 +", value: "5.11.0" }, { label: "5.10.2 +", value: "5.10.2" }, { label: "5.9.1 +", value: "5.9.1" }, { label: "5.8.2 +", value: "5.8.2" },