diff --git a/CHANGELOG.md b/CHANGELOG.md index 46aa9b9a04..10c2dfa215 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +## Fleet 4.88.1 (Jul 10, 2026) + +### Bug fixes + +- Fixed an issue where a configuration profile could be enqueued multiple times for a single host. +- Fixed recovery lock password being enforced on personally-owned (BYOD) macOS hosts, where it would always fail because personal enrollments have device lock rights stripped. These hosts are now skipped. +- Fixed a bug where a user's BYOD selection was not persisted through IdP authentication +- Fixed a bug where installing App Store (VPP) or in-house apps on an iOS/iPadOS host enrolled with the manual (profile-driven) BYOD enrollment profile failed while trying to look up a VPP user. These device-channel hosts now install apps to the device, the same as company-owned manual enrollment; user-scoped licensing is reserved for Account-Driven User Enrollment. + ## Fleet 4.88.0 (Jul 01, 2026) ### Bug fixes diff --git a/charts/fleet/Chart.yaml b/charts/fleet/Chart.yaml index 38340e742b..b59d7fc665 100644 --- a/charts/fleet/Chart.yaml +++ b/charts/fleet/Chart.yaml @@ -4,11 +4,11 @@ name: fleet keywords: - fleet - osquery -version: v7.0.10 +version: v7.0.11 home: https://github.com/fleetdm/fleet sources: - https://github.com/fleetdm/fleet.git -appVersion: v4.88.0 +appVersion: v4.88.1 dependencies: - name: mysql condition: mysql.enabled diff --git a/charts/fleet/values.yaml b/charts/fleet/values.yaml index d1e73dace8..d7930727a6 100644 --- a/charts/fleet/values.yaml +++ b/charts/fleet/values.yaml @@ -4,7 +4,7 @@ hostName: fleet.localhost replicas: 3 # The number of Fleet instances to deploy revisionHistoryLimit: 10 # Number of old ReplicaSets for Fleet deployment to retain for rollback (set to 0 for unlimited) imageRepository: fleetdm/fleet -imageTag: v4.88.0 # Version of Fleet to deploy +imageTag: v4.88.1 # Version of Fleet to deploy # imagePullPolicy is optional. If unset, Kubernetes defaults to IfNotPresent # for tagged images and Always for the :latest tag. Valid values: Always, # IfNotPresent, Never. diff --git a/infrastructure/dogfood/terraform/aws/variables.tf b/infrastructure/dogfood/terraform/aws/variables.tf index 80c5d7ba93..dca3cdbaaf 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.88.0" + default = "fleetdm/fleet:v4.88.1" } variable "software_inventory" { diff --git a/infrastructure/dogfood/terraform/gcp/variables.tf b/infrastructure/dogfood/terraform/gcp/variables.tf index 9117636eb9..325ed82c86 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.88.0" + default = "fleetdm/fleet:v4.88.1" } variable "software_installers_bucket_name" { diff --git a/tools/fleetctl-npm/package.json b/tools/fleetctl-npm/package.json index a8365176b1..acd8b7ddf5 100644 --- a/tools/fleetctl-npm/package.json +++ b/tools/fleetctl-npm/package.json @@ -1,6 +1,6 @@ { "name": "fleetctl", - "version": "v4.88.0", + "version": "v4.88.1", "description": "Installer for the fleetctl CLI tool", "bin": { "fleetctl": "./run.js"