Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 31 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,33 @@
## Fleet 4.80.1 (Feb 06, 2026)

### Bug fixes

- Optimizing certificate template batch delete auth
- Updated refetch logic for iPhone and iPad to only fetch location data if the host is locked.
- Fleet UI: Allow users to scroll through disabled yml fields
- Fleet UI: Update icon buttons for consistency
- Fleet UI: Fixed broken disk space sort header on hosts table
- Fleet UI: Fixed hover color of links in error flash messages
- Fleet UI: Clarify what happens to pending software installs when deleting VPP apps
- fixed an issue where `fleetctl generate-gitops` would panic if the google calendar integration was enabled
- Fixed false positive for CVE-2023-41036 for macvim
- the google calendar intergration api key json is now obfuscated in GET requests
- Fixed a UI bug where the host list was being pushed down when viewing with a platform filter.
- Fixed false negative CVE for 7-Zip installed with MSI installer.
- fixed libtiff false positive vulnerability
- Fixed CVE false positives for Microsoft 365 companion apps by targeting Microsoft 365 better
- Fixed a bug where certain iOS/iPadOS devices (enrolled prior to Fleet v4.68.0) are unable renew their
enrollment profiles because of mismatched server URLs (specifically, this bug occurs if the URL in
the original enrollment profile contains an `enroll_reference` query parameter).
- Added the FLEET_SERVER_TRUSTED_PROXIES configuration.
Updated lock modal for iPad hosts to display iPad screenshot in the end user experience section
Fixed false negative CVE for pgAdmin 4.
- Fixed git & gitk cve attributions due to mismatch between homebrew packaging and nvd feed attribution
- Fixed false positives for Safari CVE-2023-28205
- Fixed styling issues with long script names.
- Show error reason when trying to create or edit a label that conflicts with a built-in label name
- Fixed bug where certificate template parameters where not serialized

## Fleet 4.80.0 (Feb 2, 2026)

### IT Admins
Expand Down Expand Up @@ -60,12 +90,6 @@ Refactored common_mysql package to support bounded contexts inside Fleet codebas

- Fixed bug in host activity card UI where activities related to MDM commands should be hidden when Apple MDM features are turned off in Fleet.

## Fleet 4.79.1 (Jan 19, 2026)

### Bug fixes

- Fixed bug in host activity card UI where activities related to MDM commands should be hidden when Apple MDM features are turned off in Fleet.

## Fleet 4.79.0 (Jan 14, 2025)

### IT Admins
Expand Down Expand Up @@ -137,7 +161,7 @@ Refactored common_mysql package to support bounded contexts inside Fleet codebas

- Added additional validation to URL parameter for MS MDM auth endpoint

## Fleet 4.78.1 (Jan 06, 2026)
## Fleet 4.78.1 (Jan 05, 2026)

### Bug fixes

Expand Down
4 changes: 2 additions & 2 deletions charts/fleet/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ name: fleet
keywords:
- fleet
- osquery
version: v6.7.11
version: v6.7.12
home: https://github.com/fleetdm/fleet
sources:
- https://github.com/fleetdm/fleet.git
appVersion: v4.80.0
appVersion: v4.80.1
dependencies:
- name: mysql
condition: mysql.enabled
Expand Down
2 changes: 1 addition & 1 deletion charts/fleet/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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.80.0 # Version of Fleet to deploy
imageTag: v4.80.1 # Version of Fleet to deploy
# imagePullSecrets is optional.
# imagePullSecrets:
# - name: docker
Expand Down
2 changes: 1 addition & 1 deletion infrastructure/dogfood/terraform/aws/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ variable "database_name" {

variable "fleet_image" {
description = "the name of the container image to run"
default = "fleetdm/fleet:v4.80.0"
default = "fleetdm/fleet:v4.80.1"
}

variable "software_inventory" {
Expand Down
2 changes: 1 addition & 1 deletion infrastructure/dogfood/terraform/gcp/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ variable "redis_mem" {
}

variable "image" {
default = "fleetdm/fleet:v4.80.0"
default = "fleetdm/fleet:v4.80.1"

variable "software_installers_bucket_name" {
default = "fleet-software-installers"
Expand Down
2 changes: 1 addition & 1 deletion tools/fleetctl-npm/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fleetctl",
"version": "v4.80.0",
"version": "v4.80.1",
"description": "Installer for the fleetctl CLI tool",
"bin": {
"fleetctl": "./run.js"
Expand Down
Loading