diff --git a/CHANGELOG.md b/CHANGELOG.md index 45c307fa7ca8..33f43ecd3d50 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## Fleet 4.0.1 (Jul 01, 2021) + +* Fix an issue in which migrations failed on MariaDB MySQL. + +* Allow `http` to be used when configuring `fleetctl` for `localhost`. + +* Fix a bug in which Team information was missing for hosts looked up by Label. + ## Fleet 4.0.0 (Jun 29, 2021) The primary additions in Fleet 4.0.0 are the new Role-based access control (RBAC) and Teams features. diff --git a/charts/fleet/Chart.yaml b/charts/fleet/Chart.yaml index 1ae6ace0f2af..5d8f3a30da39 100644 --- a/charts/fleet/Chart.yaml +++ b/charts/fleet/Chart.yaml @@ -4,8 +4,8 @@ name: fleet keywords: - fleet - osquery -version: v4.0.0 +version: v4.0.1 home: https://github.com/fleetdm/fleet sources: - https://github.com/fleetdm/fleet.git -appVersion: v4.0.0 +appVersion: v4.0.1 diff --git a/charts/fleet/values.yaml b/charts/fleet/values.yaml index 9cc9db011035..9356ccdd37fb 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.0.0 # Version of Fleet to deploy +imageTag: v4.0.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 da1dabd115f8..9afe77f36f31 100644 --- a/tools/fleetctl-npm/package.json +++ b/tools/fleetctl-npm/package.json @@ -1,6 +1,6 @@ { "name": "fleetctl", - "version": "v4.0.0", + "version": "v4.0.1", "description": "Installer for the fleetctl CLI tool", "bin": { "fleetctl": "./run.js"