From 6e96df90553cfcb1d956ce89dfbb4f2ba387113d Mon Sep 17 00:00:00 2001 From: Zach Wasserman Date: Tue, 9 Mar 2021 09:57:31 -0800 Subject: [PATCH] Update osquery version options (#426) 4.6.0 is already released and 4.7.0 is coming very shortly. --- .../forms/ConfigurePackQueryForm/ConfigurePackQueryForm.jsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/components/forms/ConfigurePackQueryForm/ConfigurePackQueryForm.jsx b/frontend/components/forms/ConfigurePackQueryForm/ConfigurePackQueryForm.jsx index c1f2a1c75f..fb28cead21 100644 --- a/frontend/components/forms/ConfigurePackQueryForm/ConfigurePackQueryForm.jsx +++ b/frontend/components/forms/ConfigurePackQueryForm/ConfigurePackQueryForm.jsx @@ -25,6 +25,8 @@ const loggingTypeOptions = [ ]; const minOsqueryVersionOptions = [ { label: 'All', value: '' }, + { label: '4.7.0 +', value: '4.7.0' }, + { label: '4.6.0 +', value: '4.6.0' }, { label: '4.5.1 +', value: '4.5.1' }, { label: '4.5.0 +', value: '4.5.0' }, { label: '4.4.0 +', value: '4.4.0' },