diff --git a/CHANGELOG.md b/CHANGELOG.md index 3865b4ef16..4f981f08ee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 @@ -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 @@ -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 diff --git a/charts/fleet/Chart.yaml b/charts/fleet/Chart.yaml index 6f4aff076d..bd5a53bd88 100644 --- a/charts/fleet/Chart.yaml +++ b/charts/fleet/Chart.yaml @@ -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 diff --git a/charts/fleet/values.yaml b/charts/fleet/values.yaml index ae209d1374..5b8b858f28 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.80.0 # Version of Fleet to deploy +imageTag: v4.80.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 16c9f9d1a3..1102d8ae0d 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.80.0" + default = "fleetdm/fleet:v4.80.1" } variable "software_inventory" { diff --git a/infrastructure/dogfood/terraform/gcp/variables.tf b/infrastructure/dogfood/terraform/gcp/variables.tf index ced181d062..ca51d31480 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.80.0" + default = "fleetdm/fleet:v4.80.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 69a76a1a34..a44b758364 100644 --- a/tools/fleetctl-npm/package.json +++ b/tools/fleetctl-npm/package.json @@ -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"