From 7f35cedd8e6beedabc95fff23b84ab93a9fbcff5 Mon Sep 17 00:00:00 2001 From: Zachary Wasserman Date: Thu, 8 Oct 2020 12:07:37 -0700 Subject: [PATCH] Update osquery versions available in schedule query UI (#2323) --- .../ConfigurePackQueryForm.jsx | 29 ++++++++++++++----- 1 file changed, 21 insertions(+), 8 deletions(-) diff --git a/frontend/components/forms/ConfigurePackQueryForm/ConfigurePackQueryForm.jsx b/frontend/components/forms/ConfigurePackQueryForm/ConfigurePackQueryForm.jsx index b80151d987..2b83f5f0ae 100644 --- a/frontend/components/forms/ConfigurePackQueryForm/ConfigurePackQueryForm.jsx +++ b/frontend/components/forms/ConfigurePackQueryForm/ConfigurePackQueryForm.jsx @@ -25,15 +25,28 @@ const loggingTypeOptions = [ ]; const minOsqueryVersionOptions = [ { label: 'All', value: '' }, - { label: '1.8.1 +', value: '1.8.1' }, - { label: '1.8.2 +', value: '1.8.2' }, - { label: '2.0.0 +', value: '2.0.0' }, - { label: '2.1.1 +', value: '2.1.1' }, - { 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: '4.5.1 +', value: '4.5.1' }, + { label: '4.5.0 +', value: '4.5.0' }, + { label: '4.4.0 +', value: '4.4.0' }, + { label: '4.3.0 +', value: '4.3.0' }, + { label: '4.2.0 +', value: '4.2.0' }, + { label: '4.1.2 +', value: '4.1.2' }, + { label: '4.1.1 +', value: '4.1.1' }, + { label: '4.1.0 +', value: '4.1.0' }, + { label: '4.0.2 +', value: '4.0.2' }, + { label: '4.0.1 +', value: '4.0.1' }, + { label: '4.0.0 +', value: '4.0.0' }, + { label: '3.4.0 +', value: '3.4.0' }, + { label: '3.3.2 +', value: '3.3.2' }, { label: '3.3.1 +', value: '3.3.1' }, + { label: '3.2.6 +', value: '3.2.6' }, + { label: '2.2.1 +', value: '2.2.1' }, + { label: '2.2.0 +', value: '2.2.0' }, + { label: '2.1.2 +', value: '2.1.2' }, + { label: '2.1.1 +', value: '2.1.1' }, + { label: '2.0.0 +', value: '2.0.0' }, + { label: '1.8.2 +', value: '1.8.2' }, + { label: '1.8.1 +', value: '1.8.1' }, ]; export class ConfigurePackQueryForm extends Component {