Skip to content

Commit 05b1eee

Browse files
authored
Adding changes for Fleet v4.52.0 (#19915)
1 parent 143c647 commit 05b1eee

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+53
-50
lines changed

CHANGELOG.md

+31
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,34 @@
1+
## Fleet 4.52.0 (Jun 20, 2024)
2+
3+
### Bug fixes
4+
5+
### Changelog
6+
7+
* Fixed an issue where profiles larger than 65KB were being truncated when stored on MySQL 8.
8+
* Fixed activity without public IP to be human readable.
9+
* Made the rendering of empty text cell values consistent. Also rendered the '0' value as a number instead of the default value `---`.
10+
* Fixed bug in `fleetctl preview` caused by creating enroll secrets.
11+
* Disabled AI features on non-new installations upgrading from < 4.50.X to >= 4.51.X.
12+
* Fixed various icon misalignments on the dashboard page.
13+
* Used a "soft-delete" approach when deleting a host so that its script execution details are still available for the activities feed.
14+
* Fixed UI bug where error detail was overflowing the table in "OS settings" modal in "My device" page UI.
15+
* Fixed bug where MDM migration failed when attempting to renew enrollment profiles on macOS Sonoma devices.
16+
* Fixed queries with dot notation in the column name to show results.
17+
* `/api/latest/fleet/hosts/:id/lock` returns `unlock_pin` for Apple hosts when query parameter `view_pin=true` is set. UI no longer uses unlock pending state for Apple hosts.
18+
* Improved the logic used by Fleet to detect if a host is currently MDM-managed.
19+
* Fixed issue where the MDM ingestion flow would fail if an invalid enrollment reference was passed.
20+
* Removed vscode false positive vulnerabilities.
21+
* Fixed a code linter issue where a slice was created non-empty and appended-to, instead of empty with the required capacity.
22+
* Fixed UI bug where Zoom icon was displayed for ZoomInfo.
23+
* Error with 404 when the user attempts to delete team policies for a non-existent team.
24+
* Fixed the Linux unlock script to support passwordless users.
25+
* Fixed an issue with the Windows-specific `windows-remove-fleetd.ps1` script provided in the Fleet repository where running the script did remove `fleetd` but made it impossible to reinstall the agent.
26+
* Fixed host details page and device details page not showing the latest software. Added `exclude_software` query parameter to the `/api/latest/fleet/hosts/:id` endpoint to exclude software from the response.
27+
* Fixed the `/mdm/apple/mdm` endpoint so that it returns status code 408 (request timeout) instead of 500 (internal server error) when encountering a timeout reading the request body.
28+
* Extended the timeout for the endpoint to upload a software installer (`POST /fleet/software/package`), and improved handling of the maximum size.
29+
* Fixed issue where Windows-specific error message was displayed when failing to parse macOS configuration profiles.
30+
* Fixed a panic (API returning code 500) when the software installer exists in the database but the installer does not exist in the storage.
31+
132
## Fleet 4.51.1 (Jun 11, 2024)
233

334
### Bug fixes

changes/17316-parse-config-profile-error

-1
This file was deleted.

changes/17387-soft-delete-host-script-and-software-install-results

-1
This file was deleted.

changes/17728-send-408-instead-of-500-for-apple-mdm-timeout

-1
This file was deleted.

changes/18733-vscode-false-pos

-1
This file was deleted.

changes/18993-404-when-no-team-on-delete-team-policies

-1
This file was deleted.

changes/19000-zoominfo-icon

-1
This file was deleted.

changes/19103-my-device-os-settings

-2
This file was deleted.

changes/19129-fleetctl-preview-enroll-secrets

-1
This file was deleted.

changes/19184-activity-human-readable

-1
This file was deleted.

changes/19197-fix-windows-remove-fleetd-script

-1
This file was deleted.

changes/19290-fix-make-slice-with-capacity

-1
This file was deleted.

changes/19324-fix-panic-in-download-software

-1
This file was deleted.

changes/19348-software-host-details-page

-3
This file was deleted.

changes/19365-disable-ai-migration

-1
This file was deleted.

changes/19453-improve-software-installer-upload-endpoint

-1
This file was deleted.

changes/19512-mdm-migration-sonoma

-1
This file was deleted.

changes/19528-dot-notation-bug-on-queries

-1
This file was deleted.

changes/19545-unlock-pin

-2
This file was deleted.

changes/19580-fix-linux-unlock-script-for-user-without-password

-1
This file was deleted.

changes/19612-idp-ingest

-1
This file was deleted.

changes/19688-fleet-mdm-detection

-1
This file was deleted.

changes/19771-prof-size

-1
This file was deleted.

changes/issue-19433-render-0-value-as-number

-1
This file was deleted.

changes/issue-19555-dashboard-icon-fixes

-1
This file was deleted.

charts/fleet/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ version: v6.0.2
88
home: https://github.com/fleetdm/fleet
99
sources:
1010
- https://github.com/fleetdm/fleet.git
11-
appVersion: v4.51.1
11+
appVersion: v4.52.0
1212
dependencies:
1313
- name: mysql
1414
condition: mysql.enabled

charts/fleet/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# All settings related to how Fleet is deployed in Kubernetes
33
hostName: fleet.localhost
44
replicas: 3 # The number of Fleet instances to deploy
5-
imageTag: v4.51.1 # Version of Fleet to deploy
5+
imageTag: v4.52.0 # Version of Fleet to deploy
66
podAnnotations: {} # Additional annotations to add to the Fleet pod
77
serviceAccountAnnotations: {} # Additional annotations to add to the Fleet service account
88
resources:

infrastructure/dogfood/terraform/aws/variables.tf

+1-1
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.51.1"
59+
default = "fleetdm/fleet:v4.52.0"
6060
}
6161

6262
variable "software_inventory" {

infrastructure/dogfood/terraform/gcp/variables.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,5 +68,5 @@ variable "redis_mem" {
6868
}
6969

7070
variable "image" {
71-
default = "fleet:v4.51.1"
71+
default = "fleet:v4.52.0"
7272
}

0 commit comments

Comments
 (0)