Prepare for 4.5.1 release (#2913)

This commit is contained in:
Zach Wasserman 2021-11-12 17:03:19 -08:00 committed by GitHub
parent 86687a80cc
commit 1bd50d8965
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
10 changed files with 17 additions and 14 deletions

View File

@ -1,3 +1,16 @@
## Fleet 4.5.1 (Nov 10, 2021)
* Fix performance issues with search filtering on manage queries page.
* Improve correctness and UX for query platform compatibility.
* Fleet Premium: Show correct hosts when a team is selected.
* Fix a bug preventing login for new SSO users.
* Always return the `disabled` value in the `GET /api/v1/fleet/packs/{id}` API (previously it was
sometimes left out).
## Fleet 4.5.0 (Nov 1, 2021)
* Fleet Premium: Add a Team admin user role. This allows users to delegate the responsibility of managing team members in Fleet. Documentation for the permissions associated with the Team admin and other user roles can be found [here on fleetdm.com/docs](https://fleetdm.com/docs/using-fleet/permissions).

View File

@ -1 +0,0 @@
* Fix performance issues with client side filtering

View File

@ -1,5 +0,0 @@
* Add improved UI messaging for query-platform compatibility checks in case of invalid sql syntax and
queries that return no compatible platforms
* Change query-platform compatibility response if query is valid sql but includes no tables (e.g.,
`SELECT 1 WHERE FALSE`) to indicate the query is compatible on all platforms rather than none
* Add tooltip to explain compatibility is estimated based on the tables present in the query

View File

@ -1 +0,0 @@
* `GET /api/v1/fleet/packs/{id}` fixed to always return the `disabled` field.

View File

@ -1 +0,0 @@
* Fix memoization of query table data on manage queries page

View File

@ -1 +0,0 @@
* Dashboard hosts change on team selection

View File

@ -1 +0,0 @@
* If SSO is enabled, ignore admin forced password reset

View File

@ -4,8 +4,8 @@ name: fleet
keywords:
- fleet
- osquery
version: v4.5.0
version: v4.5.1
home: https://github.com/fleetdm/fleet
sources:
- https://github.com/fleetdm/fleet.git
appVersion: v4.5.0
appVersion: v4.5.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.5.0 # Version of Fleet to deploy
imageTag: v4.5.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.5.0",
"version": "v4.5.1",
"description": "Installer for the fleetctl CLI tool",
"bin": {
"fleetctl": "./run.js"