diff --git a/CHANGELOG.md b/CHANGELOG.md index bf53cf9e3c..4c7acde79f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## Fleet 4.75.1 (Oct 21, 2025) + +### Bug fixes + +- Fixed `fleetctl generate-gitops` when MDM is not turned on. +- Reduced load on migration from 4.74.0 and below. + ## Fleet 4.75.0 (Oct 17, 2025) ### Security Engineers @@ -152,13 +159,6 @@ - Fixed an alignment issue on the My device page. - Fix deadlocks when updating automations for 10+ policies at one time. -## Fleet 4.73.4 (Sep 30, 2025) - -### Bug fixes - -- Added logic to detect and fix migration issues caused by improperly published Fleet v4.73.2 Linux binary -- Removing the software renaming fix introduced in 4.73.3 due to MySQL DB performance issues. - ## Fleet 4.73.3 (Sep 26, 2025) ### Bug fixes diff --git a/charts/fleet/Chart.yaml b/charts/fleet/Chart.yaml index 9cba7c343e..7aaae256e1 100644 --- a/charts/fleet/Chart.yaml +++ b/charts/fleet/Chart.yaml @@ -4,11 +4,11 @@ name: fleet keywords: - fleet - osquery -version: v6.6.21 +version: v6.6.22 home: https://github.com/fleetdm/fleet sources: - https://github.com/fleetdm/fleet.git -appVersion: v4.75.0 +appVersion: v4.75.1 dependencies: - name: mysql condition: mysql.enabled diff --git a/charts/fleet/values.yaml b/charts/fleet/values.yaml index 0bc14a44a8..47ddf824c1 100644 --- a/charts/fleet/values.yaml +++ b/charts/fleet/values.yaml @@ -3,7 +3,7 @@ hostName: fleet.localhost replicas: 3 # The number of Fleet instances to deploy imageRepository: fleetdm/fleet -imageTag: v4.75.0 # Version of Fleet to deploy +imageTag: v4.75.1 # Version of Fleet to deploy # imagePullSecrets is optional. # imagePullSecrets: # - name: docker diff --git a/infrastructure/dogfood/terraform/aws/variables.tf b/infrastructure/dogfood/terraform/aws/variables.tf index 2336a9cbc5..9b0a3c46e3 100644 --- a/infrastructure/dogfood/terraform/aws/variables.tf +++ b/infrastructure/dogfood/terraform/aws/variables.tf @@ -56,7 +56,7 @@ variable "database_name" { variable "fleet_image" { description = "the name of the container image to run" - default = "fleetdm/fleet:v4.75.0" + default = "fleetdm/fleet:v4.75.1" } variable "software_inventory" { diff --git a/infrastructure/dogfood/terraform/gcp/variables.tf b/infrastructure/dogfood/terraform/gcp/variables.tf index 70353a473d..8e72762fa7 100644 --- a/infrastructure/dogfood/terraform/gcp/variables.tf +++ b/infrastructure/dogfood/terraform/gcp/variables.tf @@ -68,7 +68,7 @@ variable "redis_mem" { } variable "image" { - default = "fleetdm/fleet:v4.75.0" + default = "fleetdm/fleet:v4.75.1" variable "software_installers_bucket_name" { default = "fleet-software-installers" diff --git a/tools/fleetctl-npm/package.json b/tools/fleetctl-npm/package.json index e56169d60f..b4472b438e 100644 --- a/tools/fleetctl-npm/package.json +++ b/tools/fleetctl-npm/package.json @@ -1,6 +1,6 @@ { "name": "fleetctl", - "version": "v4.75.0", + "version": "v4.75.1", "description": "Installer for the fleetctl CLI tool", "bin": { "fleetctl": "./run.js"