Skip to content

Commit 941d514

Browse files
authored
Adding changes for Fleet v4.82.1 (#41841)
1 parent 68d1031 commit 941d514

File tree

11 files changed

+18
-13
lines changed

11 files changed

+18
-13
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
## Fleet 4.82.1 (Mar 18, 2026)
2+
3+
### Bug fixes
4+
5+
- 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.
6+
- Stopped duplicate Fleet-maintained app entries from showing up in setup experience.
7+
- Reduced database contention during the vulnerability cron.
8+
- Added a secondary index on `host_software(software_id)` to improve query performance.
9+
- Fixed an issue where the "add Fleet-maintained app" endpoint incorrectly added software to the Unassigned fleet.
10+
- Muted deprecation warnings for body params when the "deprecated-field-names" topic is not enabled.
11+
- Fixed custom app icons not getting set via GitOps when the same software title exists in multiple teams.
12+
113
## Fleet 4.82.0 (Mar 11, 2026)
214

315
### IT Admins

changes/41663-duplicates

Lines changed: 0 additions & 1 deletion
This file was deleted.

changes/41664-vulnerability-cron-db-contention

Lines changed: 0 additions & 2 deletions
This file was deleted.

changes/41688-fix-icons-via-gitops

Lines changed: 0 additions & 1 deletion
This file was deleted.

changes/41742-fix-my-device-500-fleet-free

Lines changed: 0 additions & 1 deletion
This file was deleted.

changes/41771-fix-fma-endpoint

Lines changed: 0 additions & 2 deletions
This file was deleted.

charts/fleet/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ name: fleet
44
keywords:
55
- fleet
66
- osquery
7-
version: v6.8.5
7+
version: v6.8.6
88
home: https://github.com/fleetdm/fleet
99
sources:
1010
- https://github.com/fleetdm/fleet.git
11-
appVersion: v4.82.0
11+
appVersion: v4.82.1
1212
dependencies:
1313
- name: mysql
1414
condition: mysql.enabled

charts/fleet/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ hostName: fleet.localhost
44
replicas: 3 # The number of Fleet instances to deploy
55
revisionHistoryLimit: 10 # Number of old ReplicaSets for Fleet deployment to retain for rollback (set to 0 for unlimited)
66
imageRepository: fleetdm/fleet
7-
imageTag: v4.82.0 # Version of Fleet to deploy
7+
imageTag: v4.82.1 # Version of Fleet to deploy
88
# imagePullSecrets is optional.
99
# imagePullSecrets:
1010
# - name: docker

infrastructure/dogfood/terraform/aws/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ variable "database_name" {
5656

5757
variable "fleet_image" {
5858
description = "the name of the container image to run"
59-
default = "fleetdm/fleet:v4.82.0"
59+
default = "fleetdm/fleet:v4.82.1"
6060
}
6161

6262
variable "software_inventory" {

infrastructure/dogfood/terraform/gcp/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ variable "redis_mem" {
6868
}
6969

7070
variable "image" {
71-
default = "fleetdm/fleet:v4.82.0"
71+
default = "fleetdm/fleet:v4.82.1"
7272

7373
variable "software_installers_bucket_name" {
7474
default = "fleet-software-installers"

0 commit comments

Comments
 (0)