diff --git a/CHANGELOG.md b/CHANGELOG.md index a45f5773fd14..d14a846825bc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## Fleet 3.10.1 (Apr 6, 2021) + +* Fix a frontend bug that prevented the "Pack" page and "Edit pack" page from rendering in the Fleet UI. This issue occurred when the `platform` key, in the requested pack's configuration, was set to any value other than `darwin`, `linux`, `windows`, or `all`. + ## Fleet 3.10.0 (Mar 31, 2021) * Add `fleetctl` agent auto-updates beta which introduces the ability to self-manage an agent update server. Available for Fleet Basic customers. diff --git a/charts/fleet/Chart.yaml b/charts/fleet/Chart.yaml index abd583dd2baf..2776384d4e1c 100644 --- a/charts/fleet/Chart.yaml +++ b/charts/fleet/Chart.yaml @@ -4,8 +4,8 @@ name: fleet keywords: - fleet - osquery -version: 3.10.0 +version: 3.10.1 home: https://github.com/fleetdm/fleet sources: - https://github.com/fleetdm/fleet.git -appVersion: 3.10.0 +appVersion: 3.10.1 diff --git a/charts/fleet/values.yaml b/charts/fleet/values.yaml index 9276cb3dd045..75e27cb37dd7 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: 3.10.0 # Version of Fleet to deploy +imageTag: 3.10.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 d2698bada81d..294738f9b993 100644 --- a/tools/fleetctl-npm/package.json +++ b/tools/fleetctl-npm/package.json @@ -1,6 +1,6 @@ { "name": "fleetctl", - "version": "3.10.0", + "version": "3.10.1", "description": "Installer for the fleetctl CLI tool", "bin": { "fleetctl": "./run.js"