From dc5f1cb753e9ebb620fa4e5e99bbe8806629d8ef Mon Sep 17 00:00:00 2001 From: George Karr Date: Tue, 6 Jan 2026 16:54:45 -0600 Subject: [PATCH] Adding changes for Fleet v4.78.1 (#37874) Co-authored-by: Luke Heath --- CHANGELOG.md | 9 +++++++++ charts/fleet/Chart.yaml | 4 ++-- charts/fleet/values.yaml | 2 +- infrastructure/dogfood/terraform/aws/variables.tf | 2 +- infrastructure/dogfood/terraform/gcp/variables.tf | 2 +- tools/fleetctl-npm/package.json | 2 +- 6 files changed, 15 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fd6fe212aa..084ee5933b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +## Fleet 4.78.1 (Jan 06, 2026) + +### Bug fixes + +- Fixed duplicate entry error when updating upgrade_code during software ingestion +- Fixed case sensitivity mismatches causing duplicate titles during software ingestion +- Added missing upgrade code persistence when adding Windows software to Fleet via GitOps +- Fixed a bug where iOS and iPadOS hosts enrolling via ABM MDM Migration would not have VPP apps installed + ## Fleet 4.78.0 (Dec 19, 2025) ### IT Admins diff --git a/charts/fleet/Chart.yaml b/charts/fleet/Chart.yaml index ce2371e027..aeb8d4bcb2 100644 --- a/charts/fleet/Chart.yaml +++ b/charts/fleet/Chart.yaml @@ -4,11 +4,11 @@ name: fleet keywords: - fleet - osquery -version: v6.7.5 +version: v6.7.6 home: https://github.com/fleetdm/fleet sources: - https://github.com/fleetdm/fleet.git -appVersion: v4.78.0 +appVersion: v4.78.1 dependencies: - name: mysql condition: mysql.enabled diff --git a/charts/fleet/values.yaml b/charts/fleet/values.yaml index 2c5b59792c..597096155f 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.78.0 # Version of Fleet to deploy +imageTag: v4.78.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 07a35e5adb..82aef0cd5a 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.78.0" + default = "fleetdm/fleet:v4.78.1" } variable "software_inventory" { diff --git a/infrastructure/dogfood/terraform/gcp/variables.tf b/infrastructure/dogfood/terraform/gcp/variables.tf index 95b76c88e7..dd5c99e738 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.78.0" + default = "fleetdm/fleet:v4.78.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 2eaf76efa9..768ba682ed 100644 --- a/tools/fleetctl-npm/package.json +++ b/tools/fleetctl-npm/package.json @@ -1,6 +1,6 @@ { "name": "fleetctl", - "version": "v4.78.0", + "version": "v4.78.1", "description": "Installer for the fleetctl CLI tool", "bin": { "fleetctl": "./run.js"