From ea4ca5b948f8c19ea52b0f7822e37879a75f5621 Mon Sep 17 00:00:00 2001 From: George Karr Date: Fri, 17 Apr 2026 12:26:30 -0500 Subject: [PATCH] Adding changes for Fleet v4.83.2 (#43495) ## Summary by CodeRabbit * **Chores** * Released patch version v4.83.2 with updated Helm chart and application metadata. * Updated deployment configurations to use the latest container image version across cloud providers. * Updated published package version to v4.83.2. --------- Co-authored-by: Luke Heath Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- CHANGELOG.md | 6 ++++++ 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, 12 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 183df6b86a..42994f0a5e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## Fleet 4.83.2 (Apr 13, 2026) + +### Bug fixes + +- Fixed a crash on the "My device" page for Fleet Free instances. The page returned a 402 error when the host was assigned to a team because the device endpoint called a premium-only API, and also crashed when accessing undefined policies data.``` + ## Fleet 4.83.1 (Apr 10, 2026) ### Bug fixes diff --git a/charts/fleet/Chart.yaml b/charts/fleet/Chart.yaml index 763e105ebf..854fff95e2 100644 --- a/charts/fleet/Chart.yaml +++ b/charts/fleet/Chart.yaml @@ -4,11 +4,11 @@ name: fleet keywords: - fleet - osquery -version: v6.8.9 +version: v6.8.10 home: https://github.com/fleetdm/fleet sources: - https://github.com/fleetdm/fleet.git -appVersion: v4.83.1 +appVersion: v4.83.2 dependencies: - name: mysql condition: mysql.enabled diff --git a/charts/fleet/values.yaml b/charts/fleet/values.yaml index 587745e942..72a405f92f 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.83.1 # Version of Fleet to deploy +imageTag: v4.83.2 # 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 13a9546f2b..76d2380480 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.83.1" + default = "fleetdm/fleet:v4.83.2" } variable "software_inventory" { diff --git a/infrastructure/dogfood/terraform/gcp/variables.tf b/infrastructure/dogfood/terraform/gcp/variables.tf index 5368a67da1..5e0279bb41 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.83.1" + default = "fleetdm/fleet:v4.83.2" } variable "software_installers_bucket_name" { diff --git a/tools/fleetctl-npm/package.json b/tools/fleetctl-npm/package.json index 62d733ff22..eba8fe7fb1 100644 --- a/tools/fleetctl-npm/package.json +++ b/tools/fleetctl-npm/package.json @@ -1,6 +1,6 @@ { "name": "fleetctl", - "version": "v4.83.1", + "version": "v4.83.2", "description": "Installer for the fleetctl CLI tool", "bin": { "fleetctl": "./run.js"