From 1bd50d8965a15a641f0b47cee6f4ef591cba57ae Mon Sep 17 00:00:00 2001 From: Zach Wasserman Date: Fri, 12 Nov 2021 17:03:19 -0800 Subject: [PATCH] Prepare for 4.5.1 release (#2913) --- CHANGELOG.md | 13 +++++++++++++ changes/fix-2785 | 1 - changes/issue-2628-2697-query-compatibility | 5 ----- .../issue-2778-packs-get-always-returns-disabled | 1 - changes/issue-2785-manage-queries-fix | 1 - changes/issue-2822-dashboard-host-change-on-team | 1 - changes/issue-2868-ignore-admin-reset-password-sso | 1 - charts/fleet/Chart.yaml | 4 ++-- charts/fleet/values.yaml | 2 +- tools/fleetctl-npm/package.json | 2 +- 10 files changed, 17 insertions(+), 14 deletions(-) delete mode 100644 changes/fix-2785 delete mode 100644 changes/issue-2628-2697-query-compatibility delete mode 100644 changes/issue-2778-packs-get-always-returns-disabled delete mode 100644 changes/issue-2785-manage-queries-fix delete mode 100644 changes/issue-2822-dashboard-host-change-on-team delete mode 100644 changes/issue-2868-ignore-admin-reset-password-sso diff --git a/CHANGELOG.md b/CHANGELOG.md index 605ea6580..6b88efd9e 100644 --- a/CHANGELOG.md +++ b/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 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). diff --git a/changes/fix-2785 b/changes/fix-2785 deleted file mode 100644 index c9b797c87..000000000 --- a/changes/fix-2785 +++ /dev/null @@ -1 +0,0 @@ -* Fix performance issues with client side filtering \ No newline at end of file diff --git a/changes/issue-2628-2697-query-compatibility b/changes/issue-2628-2697-query-compatibility deleted file mode 100644 index 34f716d31..000000000 --- a/changes/issue-2628-2697-query-compatibility +++ /dev/null @@ -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 \ No newline at end of file diff --git a/changes/issue-2778-packs-get-always-returns-disabled b/changes/issue-2778-packs-get-always-returns-disabled deleted file mode 100644 index a0a63c19a..000000000 --- a/changes/issue-2778-packs-get-always-returns-disabled +++ /dev/null @@ -1 +0,0 @@ -* `GET /api/v1/fleet/packs/{id}` fixed to always return the `disabled` field. diff --git a/changes/issue-2785-manage-queries-fix b/changes/issue-2785-manage-queries-fix deleted file mode 100644 index e287060d1..000000000 --- a/changes/issue-2785-manage-queries-fix +++ /dev/null @@ -1 +0,0 @@ -* Fix memoization of query table data on manage queries page \ No newline at end of file diff --git a/changes/issue-2822-dashboard-host-change-on-team b/changes/issue-2822-dashboard-host-change-on-team deleted file mode 100644 index e9449c8a4..000000000 --- a/changes/issue-2822-dashboard-host-change-on-team +++ /dev/null @@ -1 +0,0 @@ -* Dashboard hosts change on team selection \ No newline at end of file diff --git a/changes/issue-2868-ignore-admin-reset-password-sso b/changes/issue-2868-ignore-admin-reset-password-sso deleted file mode 100644 index e34429da0..000000000 --- a/changes/issue-2868-ignore-admin-reset-password-sso +++ /dev/null @@ -1 +0,0 @@ -* If SSO is enabled, ignore admin forced password reset diff --git a/charts/fleet/Chart.yaml b/charts/fleet/Chart.yaml index 5fa2c6b92..7f2746b1c 100644 --- a/charts/fleet/Chart.yaml +++ b/charts/fleet/Chart.yaml @@ -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 diff --git a/charts/fleet/values.yaml b/charts/fleet/values.yaml index f68274b2a..211103111 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.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 diff --git a/tools/fleetctl-npm/package.json b/tools/fleetctl-npm/package.json index 4cf9693a0..baf15d8b6 100644 --- a/tools/fleetctl-npm/package.json +++ b/tools/fleetctl-npm/package.json @@ -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"