diff --git a/CHANGELOG.md b/CHANGELOG.md index b9284de2cc..a2f755fd87 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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). diff --git a/changes/fleetctl-apply-to-fail-unknown-fields b/changes/fleetctl-apply-to-fail-unknown-fields deleted file mode 100644 index 2c6b232d1b..0000000000 --- a/changes/fleetctl-apply-to-fail-unknown-fields +++ /dev/null @@ -1 +0,0 @@ -* Make `fleetctl apply` fail if there's an unknown field. diff --git a/charts/fleet/Chart.yaml b/charts/fleet/Chart.yaml index 69b971a317..46bfb5225d 100644 --- a/charts/fleet/Chart.yaml +++ b/charts/fleet/Chart.yaml @@ -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 diff --git a/charts/fleet/values.yaml b/charts/fleet/values.yaml index c5e076b365..136eec2061 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: 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 diff --git a/tools/fleetctl-npm/package.json b/tools/fleetctl-npm/package.json index df8a20a30e..5120d231b8 100644 --- a/tools/fleetctl-npm/package.json +++ b/tools/fleetctl-npm/package.json @@ -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"