Skip to content

Commit

Permalink
Prepare for Fleet 4.6.2 (#3146)
Browse files Browse the repository at this point in the history
  • Loading branch information
noahtalerman committed Dec 2, 2021
1 parent f121765 commit cfe1d1d
Show file tree
Hide file tree
Showing 13 changed files with 21 additions and 15 deletions.
19 changes: 17 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,22 @@
## Fleet 4.6.2 (Nov 30, 2021)

* Improve performance of the **Home** page by removing total hosts count from the "Software" table.

* Improve performance of the **Queries** page by adding pagination to the list of queries.

* Fix a bug in which the "Shell" column of the "Users" table on the **Host details** page would sometimes fail to update.

* Fix a bug in which a host's status could quickly alternate between "Online" and "Offline" by increasing the grace period for host status.

* Fix a bug in which some hosts would have a missing `host_seen_times` entry.

* Add an `after` parameter to the [`GET /hosts` API route](https://fleetdm.com/docs/using-fleet/rest-api#list-hosts) to allow for cursor pagination.

* Add a `disable_failing_policies` parameter to the [`GET /hosts` API route](https://fleetdm.com/docs/using-fleet/rest-api#list-hosts) to allow the API request to respond faster if failing policies count information is not needed.

## 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.
* 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.

Expand Down
1 change: 0 additions & 1 deletion changes/add-cursor-pagination-to-hosts

This file was deleted.

1 change: 0 additions & 1 deletion changes/add-disable-failing-policies-for-host

This file was deleted.

1 change: 0 additions & 1 deletion changes/app-config-caching-per-instance

This file was deleted.

1 change: 0 additions & 1 deletion changes/fix-3003-software-loading

This file was deleted.

1 change: 0 additions & 1 deletion changes/increase-host-status-grace-period

This file was deleted.

1 change: 0 additions & 1 deletion changes/issue-3079-remove-host-counts

This file was deleted.

1 change: 0 additions & 1 deletion changes/issue-3095-fix-seen-times

This file was deleted.

1 change: 0 additions & 1 deletion changes/issue-3163-queries-pagination

This file was deleted.

1 change: 0 additions & 1 deletion changes/update-host-user-shell

This file was deleted.

4 changes: 2 additions & 2 deletions charts/fleet/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ name: fleet
keywords:
- fleet
- osquery
version: v4.6.1
version: v4.6.2
home: https://github.com/fleetdm/fleet
sources:
- https://github.com/fleetdm/fleet.git
appVersion: v4.6.1
appVersion: v4.6.2
2 changes: 1 addition & 1 deletion charts/fleet/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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.1 # Version of Fleet to deploy
imageTag: v4.6.2 # 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
Expand Down
2 changes: 1 addition & 1 deletion tools/fleetctl-npm/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fleetctl",
"version": "v4.6.1",
"version": "v4.6.2",
"description": "Installer for the fleetctl CLI tool",
"bin": {
"fleetctl": "./run.js"
Expand Down

0 comments on commit cfe1d1d

Please sign in to comment.