diff --git a/CHANGELOG.md b/CHANGELOG.md index 10fb6d37db..94ba4edf3b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## Fleet 4.76.1 (Nov 14, 2025) + +### Bug fixes + +* Added an endpoint to allow updating the macOS setup experience script in-place, and modified gitops to utilize it + ## Fleet 4.76.0 (Nov 7, 2025) ### Security Engineers @@ -226,6 +232,13 @@ - 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 3ca566dfbe..f96fd6ebf2 100644 --- a/charts/fleet/Chart.yaml +++ b/charts/fleet/Chart.yaml @@ -4,11 +4,11 @@ name: fleet keywords: - fleet - osquery -version: v6.7.1 +version: v6.7.2 home: https://github.com/fleetdm/fleet sources: - https://github.com/fleetdm/fleet.git -appVersion: v4.76.0 +appVersion: v4.76.1 dependencies: - name: mysql condition: mysql.enabled diff --git a/charts/fleet/values.yaml b/charts/fleet/values.yaml index 21be0dd420..6f440c31fb 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.76.0 # Version of Fleet to deploy +imageTag: v4.76.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 bb0db90815..99ecd6a05b 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.76.0" + default = "fleetdm/fleet:v4.76.1" } variable "software_inventory" { diff --git a/infrastructure/dogfood/terraform/gcp/variables.tf b/infrastructure/dogfood/terraform/gcp/variables.tf index 60393ed71f..6d5c478fbd 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.76.0" + default = "fleetdm/fleet:v4.76.1" variable "software_installers_bucket_name" { default = "fleet-software-installers" diff --git a/infrastructure/loadtesting/terraform/infra/README.md b/infrastructure/loadtesting/terraform/infra/README.md index 6e654caa3e..4f7c23512c 100644 --- a/infrastructure/loadtesting/terraform/infra/README.md +++ b/infrastructure/loadtesting/terraform/infra/README.md @@ -200,7 +200,7 @@ terraform workspace delete | [fleet\_task\_memory](#input\_fleet\_task\_memory) | The memory configuration for Fleet containers | `number` | `4096` | no | | [redis\_instance\_count](#input\_redis\_instance\_count) | The number of Elasticache nodes | `number` | `3` | no | | [redis\_instance\_size](#input\_redis\_instance\_size) | The instance size for Elasticache nodes | `string` | `"cache.t4g.micro"` | no | -| [tag](#input\_tag) | The tag to deploy. This would be the same as the branch name | `string` | `"v4.76.0"` | no | +| [tag](#input\_tag) | The tag to deploy. This would be the same as the branch name | `string` | `"v4.76.1"` | no | ## Outputs diff --git a/infrastructure/loadtesting/terraform/infra/variables.tf b/infrastructure/loadtesting/terraform/infra/variables.tf index e79a43e0c6..913a34f3c5 100644 --- a/infrastructure/loadtesting/terraform/infra/variables.tf +++ b/infrastructure/loadtesting/terraform/infra/variables.tf @@ -1,6 +1,6 @@ variable "tag" { description = "The tag to deploy. This would be the same as the branch name" - default = "v4.76.0" + default = "v4.76.1" } variable "fleet_task_count" { diff --git a/tools/fleetctl-npm/package.json b/tools/fleetctl-npm/package.json index 0660e672a4..dabaed7ef7 100644 --- a/tools/fleetctl-npm/package.json +++ b/tools/fleetctl-npm/package.json @@ -1,6 +1,6 @@ { "name": "fleetctl", - "version": "v4.76.0", + "version": "v4.76.1", "description": "Installer for the fleetctl CLI tool", "bin": { "fleetctl": "./run.js"