mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 08:55:24 +00:00
Prepare for 4.5.1 release (#2913)
This commit is contained in:
parent
86687a80cc
commit
1bd50d8965
13
CHANGELOG.md
13
CHANGELOG.md
@ -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 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).
|
* 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).
|
||||||
|
@ -1 +0,0 @@
|
|||||||
* Fix performance issues with client side filtering
|
|
@ -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
|
|
@ -1 +0,0 @@
|
|||||||
* `GET /api/v1/fleet/packs/{id}` fixed to always return the `disabled` field.
|
|
@ -1 +0,0 @@
|
|||||||
* Fix memoization of query table data on manage queries page
|
|
@ -1 +0,0 @@
|
|||||||
* Dashboard hosts change on team selection
|
|
@ -1 +0,0 @@
|
|||||||
* If SSO is enabled, ignore admin forced password reset
|
|
@ -4,8 +4,8 @@ name: fleet
|
|||||||
keywords:
|
keywords:
|
||||||
- fleet
|
- fleet
|
||||||
- osquery
|
- osquery
|
||||||
version: v4.5.0
|
version: v4.5.1
|
||||||
home: https://github.com/fleetdm/fleet
|
home: https://github.com/fleetdm/fleet
|
||||||
sources:
|
sources:
|
||||||
- https://github.com/fleetdm/fleet.git
|
- https://github.com/fleetdm/fleet.git
|
||||||
appVersion: v4.5.0
|
appVersion: v4.5.1
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
# All settings related to how Fleet is deployed in Kubernetes
|
# All settings related to how Fleet is deployed in Kubernetes
|
||||||
hostName: fleet.localhost
|
hostName: fleet.localhost
|
||||||
replicas: 3 # The number of Fleet instances to deploy
|
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
|
createIngress: true # Whether or not to automatically create an Ingress
|
||||||
ingressAnnotations: {} # Additional annotation to add to the Ingress
|
ingressAnnotations: {} # Additional annotation to add to the Ingress
|
||||||
podAnnotations: {} # Additional annotations to add to the Fleet pod
|
podAnnotations: {} # Additional annotations to add to the Fleet pod
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "fleetctl",
|
"name": "fleetctl",
|
||||||
"version": "v4.5.0",
|
"version": "v4.5.1",
|
||||||
"description": "Installer for the fleetctl CLI tool",
|
"description": "Installer for the fleetctl CLI tool",
|
||||||
"bin": {
|
"bin": {
|
||||||
"fleetctl": "./run.js"
|
"fleetctl": "./run.js"
|
||||||
|
Loading…
Reference in New Issue
Block a user