From 0c8a01e2ed78487d978d91b8f389ac3a55c8d7f8 Mon Sep 17 00:00:00 2001 From: Zachary Wasserman Date: Tue, 16 Oct 2018 14:29:13 -0700 Subject: [PATCH] Update minimum osquery version options in query scheduler (#1943) --- .../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 ca5efcb65d..597234f97f 100644 --- a/frontend/components/forms/ConfigurePackQueryForm/ConfigurePackQueryForm.jsx +++ b/frontend/components/forms/ConfigurePackQueryForm/ConfigurePackQueryForm.jsx @@ -31,6 +31,8 @@ const minOsqueryVersionOptions = [ { label: '2.1.2 +', value: '2.1.2' }, { label: '2.2.0 +', value: '2.2.0' }, { label: '2.2.1 +', value: '2.2.1' }, + { label: '3.2.6 +', value: '3.2.6' }, + { label: '3.3.1 +', value: '3.3.1' }, ]; export class ConfigurePackQueryForm extends Component {