Prepare for 4.6.1 release (#3067)

This commit is contained in:
Zach Wasserman 2021-11-21 21:23:25 -08:00 committed by GitHub
parent e04f210f51
commit 2b2e9f9f44
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 11 additions and 5 deletions

View File

@ -1,3 +1,10 @@
## Fleet 4.6.1 (Nov 21, 2021)
* Fix a bug (introduced in 4.6.0) in which Fleet used progressively more CPU on Redis, resulting in
API and UI slowdowns and inconsistency.
* Make `fleetctl apply` fail when the configuration contains invalid fields.
## Fleet 4.6.0 (Nov 18, 2021)
* Fleet Premium: Add ability to filter aggregate host data such as platforms (macOS, Windows, and Linux) and status (online, offline, and new) the **Home** page. The aggregate host data is also available in the [`GET /host_summary API route`](https://fleetdm.com/docs/using-fleet/rest-api#get-hosts-summary).

View File

@ -1 +0,0 @@
* Make `fleetctl apply` fail if there's an unknown field.

View File

@ -4,8 +4,8 @@ name: fleet
keywords:
- fleet
- osquery
version: v4.6.0
version: v4.6.1
home: https://github.com/fleetdm/fleet
sources:
- https://github.com/fleetdm/fleet.git
appVersion: v4.6.0
appVersion: v4.6.1

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: v4.6.0 # Version of Fleet to deploy
imageTag: v4.6.1 # 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": "v4.6.0",
"version": "v4.6.1",
"description": "Installer for the fleetctl CLI tool",
"bin": {
"fleetctl": "./run.js"