From 7fd439f812611229eb290baee7688638940d2762 Mon Sep 17 00:00:00 2001 From: noahtalerman <47070608+noahtalerman@users.noreply.github.com> Date: Thu, 3 Jun 2021 14:07:33 -0400 Subject: [PATCH] Prepare for Fleet 3.13.0 (#944) - Add to CHANGELOG - Bump versioning --- CHANGELOG.md | 12 ++++++++++++ charts/fleet/Chart.yaml | 4 ++-- charts/fleet/values.yaml | 2 +- tools/fleetctl-npm/package.json | 2 +- 4 files changed, 16 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f0ecea52e323..d3198a21585d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +## Fleet 3.13.0 (Jun 3, 2021) + +* Improve performance of the `additional_queries` feature by moving `additional` query results into a separate table in the MySQL database. Please note that the `/api/v1/fleet/hosts` API endpoint now return only the requested `additional` columns. See documentation on the changes to the hosts API endpoint [here](https://github.com/fleetdm/fleet/blob/06b2e564e657492bfbc647e07eb49fd4efca5a03/docs/1-Using-Fleet/3-REST-API.md#list-hosts). + +* Fix a bug in which running a live query in the Fleet UI would return no results and the query would seem "hung" on a small number of devices. + +* Improve viewing live query errors in the Fleet UI by including the “Errors” table in the full screen view. + +* Improve `fleetctl preview` experience by adding the `fleetctl preview reset` and `fleetctl preview stop` commands to reset and stop simulated hosts running in Docker. + +* Add several improvements to the Fleet UI including additional contrast on checkboxes and dropdown pills. + ## Fleet 3.12.0 (May 19, 2021) * Add scheduled queries to the _Host details_ page. Surface the "Name", "Description", "Frequency", and "Last run" information for each query in a pack that apply to a specific host. diff --git a/charts/fleet/Chart.yaml b/charts/fleet/Chart.yaml index f7b228edfcc6..166f39174707 100644 --- a/charts/fleet/Chart.yaml +++ b/charts/fleet/Chart.yaml @@ -4,8 +4,8 @@ name: fleet keywords: - fleet - osquery -version: 3.12.0 +version: 3.13.0 home: https://github.com/fleetdm/fleet sources: - https://github.com/fleetdm/fleet.git -appVersion: 3.12.0 +appVersion: 3.13.0 diff --git a/charts/fleet/values.yaml b/charts/fleet/values.yaml index 8ee9bf995c1a..e370c1afdb78 100644 --- a/charts/fleet/values.yaml +++ b/charts/fleet/values.yaml @@ -2,7 +2,7 @@ # All settings related to how Fleet is deployed in Kubernetes hostName: fleet.localhost replicas: 3 # The number of Fleet instances to deploy -imageTag: 3.12.0 # Version of Fleet to deploy +imageTag: 3.13.0 # Version of Fleet to deploy createIngress: true # Whether or not to automatically create an Ingress ingressAnnotations: {} # Additional annotation to add to the Ingress podAnnotations: {} # Additional annotations to add to the Fleet pod diff --git a/tools/fleetctl-npm/package.json b/tools/fleetctl-npm/package.json index 55b03abe8526..b1eb2b3a418e 100644 --- a/tools/fleetctl-npm/package.json +++ b/tools/fleetctl-npm/package.json @@ -1,6 +1,6 @@ { "name": "fleetctl", - "version": "3.12.0", + "version": "3.13.0", "description": "Installer for the fleetctl CLI tool", "bin": { "fleetctl": "./run.js"