Prepare for Fleet 3.13.0 (#944)

- Add to CHANGELOG
- Bump versioning
This commit is contained in:
noahtalerman 2021-06-03 14:07:33 -04:00 committed by GitHub
parent 6f51bd9cb5
commit 7fd439f812
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 16 additions and 4 deletions

View file

@ -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.

View file

@ -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

View file

@ -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

View file

@ -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"