diff --git a/CHANGELOG.md b/CHANGELOG.md index fbf50373754..183df6b86a2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +## Fleet 4.83.1 (Apr 10, 2026) + +### Bug fixes + +- Fixed policy creation failing when type was omitted. +- Fixed auth token not persisting when logging in via SSO. +- Fleet UI: Fixed infinite page loop pagination bug on software table page happening when viewing a subsequent page and then using the software filter dropdown to filter. +- Fleet UI: Fixed software table page number to be bookmarkable + ## Fleet 4.83.0 (Apr 1, 2026) ### IT Admins diff --git a/charts/fleet/Chart.yaml b/charts/fleet/Chart.yaml index 9eabda48384..763e105ebf7 100644 --- a/charts/fleet/Chart.yaml +++ b/charts/fleet/Chart.yaml @@ -4,11 +4,11 @@ name: fleet keywords: - fleet - osquery -version: v6.8.8 +version: v6.8.9 home: https://github.com/fleetdm/fleet sources: - https://github.com/fleetdm/fleet.git -appVersion: v4.83.0 +appVersion: v4.83.1 dependencies: - name: mysql condition: mysql.enabled diff --git a/charts/fleet/values.yaml b/charts/fleet/values.yaml index 4522695653b..587745e942a 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.0 # Version of Fleet to deploy +imageTag: v4.83.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 fe28f773e00..13a9546f2ba 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.0" + default = "fleetdm/fleet:v4.83.1" } variable "software_inventory" { diff --git a/infrastructure/dogfood/terraform/gcp/variables.tf b/infrastructure/dogfood/terraform/gcp/variables.tf index b68f81d0559..5368a67da1c 100644 --- a/infrastructure/dogfood/terraform/gcp/variables.tf +++ b/infrastructure/dogfood/terraform/gcp/variables.tf @@ -68,7 +68,8 @@ variable "redis_mem" { } variable "image" { - default = "fleetdm/fleet:v4.83.0" + default = "fleetdm/fleet:v4.83.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 c4c2b3bb7d8..22b2fc734cd 100644 --- a/tools/fleetctl-npm/package.json +++ b/tools/fleetctl-npm/package.json @@ -1,6 +1,6 @@ { "name": "fleetctl", - "version": "v4.83.0", + "version": "v4.83.1", "description": "Installer for the fleetctl CLI tool", "bin": { "fleetctl": "./run.js"